# Report from Clang-Tidy To access the full raw file, add `.md` in the URL. ## Summary ### Per category | category | issues | |---|---| | `bugprone-assignment-in-if-condition` | 3 | | `bugprone-copy-constructor-init` | 1 | | `bugprone-fold-init-type` | 1 | | `bugprone-incorrect-roundings` | 4 | | `bugprone-integer-division` | 45 | | `bugprone-non-zero-enum-to-bool-conversion` | 12 | | `bugprone-redundant-branch-condition` | 5 | | `bugprone-reserved-identifier` | 58 | | `bugprone-suspicious-stringview-data-usage` | 1065 | | `bugprone-switch-missing-default-case` | 151 | | `bugprone-throw-keyword-missing` | 4 | | `bugprone-too-small-loop-variable` | 8 | | `bugprone-unchecked-optional-access` | 14 | | `bugprone-unused-local-non-trivial-variable` | 15 | | `bugprone-use-after-move` | 2 | | `clang-analyzer-core.CallAndMessage` | 6 | | `clang-analyzer-core.DivideZero` | 1 | | `clang-analyzer-core.NonNullParamChecker` | 1 | | `clang-analyzer-core.StackAddressEscape` | 2 | | `clang-analyzer-core.UndefinedBinaryOperatorResult` | 2 | | `clang-analyzer-core.uninitialized.Assign` | 6 | | `clang-analyzer-cplusplus.NewDeleteLeaks` | 11 | | `clang-analyzer-deadcode.DeadStores` | 97 | | `clang-analyzer-optin.cplusplus.UninitializedObject` | 1 | | `clang-analyzer-optin.cplusplus.VirtualCall` | 5 | | `clang-analyzer-optin.performance.Padding` | 1 | | `clang-analyzer-security.FloatLoopCounter` | 20 | | `clang-analyzer-unix.Errno` | 3 | | `clang-analyzer-unix.Stream` | 5 | | `clang-diagnostic-absolute-value` | 137 | | `clang-diagnostic-error` | 479 | | `clang-diagnostic-format` | 2 | | `clang-diagnostic-reorder-ctor` | 2 | | `clang-diagnostic-sign-compare` | 15 | | `clang-diagnostic-unneeded-internal-declaration` | 1 | | `clang-diagnostic-unused-variable` | 10 | | `clang-diagnostic-vla-cxx-extension` | 56 | | `cppcoreguidelines-avoid-const-or-ref-data-members` | 94 | | `cppcoreguidelines-explicit-virtual-functions` | 105 | | `cppcoreguidelines-init-variables` | 1385 | | `cppcoreguidelines-missing-std-forward` | 4 | | `cppcoreguidelines-pro-type-const-cast` | 4 | | `cppcoreguidelines-pro-type-cstyle-cast` | 39 | | `cppcoreguidelines-pro-type-member-init` | 951 | | `cppcoreguidelines-pro-type-reinterpret-cast` | 787 | | `cppcoreguidelines-pro-type-union-access` | 1 | | `cppcoreguidelines-slicing` | 5 | | `cppcoreguidelines-virtual-class-destructor` | 4 | | `google-global-names-in-headers` | 147 | | `misc-include-cleaner` | 24577 | | `misc-redundant-expression` | 13 | | `misc-unused-using-decls` | 102 | | total | 30469 | ### Per directory, per line | directory | issues | issues per 1000 lines | |---|---|---| | [`ALICE3`](#alice3) | 1180 | 61.6 | | [`Common`](#common) | 489 | 11.8 | | [`DPG`](#dpg) | 1214 | 39.6 | | [`EventFiltering`](#eventfiltering) | 663 | 40.9 | | [`PWGCF`](#pwgcf) | 7233 | 44.1 | | [`PWGDQ`](#pwgdq) | 1630 | 30 | | [`PWGEM`](#pwgem) | 2858 | 45 | | [`PWGHF`](#pwghf) | 648 | 6.06 | | [`PWGJE`](#pwgje) | 697 | 10.7 | | [`PWGLF`](#pwglf) | 9259 | 49.6 | | [`PWGMM`](#pwgmm) | 978 | 57.8 | | [`PWGUD`](#pwgud) | 2013 | 47.8 | | [`Tools`](#tools) | 186 | 36.5 | | [`Tutorials`](#tutorials) | 1421 | 139 | | total | 30469 | 37 | ## Issues ### ALICE3 #### `ALICE3/Core/Decayer.h` ```text ALICE3/Core/Decayer.h:26:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] ALICE3/Core/Decayer.h:27:1: warning: included header TDecayChannel.h is not used directly [misc-include-cleaner] ALICE3/Core/Decayer.h:30:1: warning: included header TParticlePDG.h is not used directly [misc-include-cleaner] ALICE3/Core/Decayer.h:35:1: warning: included header string is not used directly [misc-include-cleaner] ALICE3/Core/Decayer.h:43:7: warning: constructor does not initialize these fields: mBz [cppcoreguidelines-pro-type-member-init] ALICE3/Core/Decayer.h:55:5: warning: uninitialized record type: 'mom' [cppcoreguidelines-pro-type-member-init] ALICE3/Core/Decayer.h:56:5: warning: uninitialized record type: 'pos' [cppcoreguidelines-pro-type-member-init] ALICE3/Core/Decayer.h:61:49: warning: no header providing "o2::constants::physics::LightSpeedCm2S" is directly included [misc-include-cleaner] ALICE3/Core/Decayer.h:64:12: warning: variable 'vx' is not initialized [cppcoreguidelines-init-variables] ALICE3/Core/Decayer.h:64:16: warning: variable 'vy' is not initialized [cppcoreguidelines-init-variables] ALICE3/Core/Decayer.h:64:20: warning: variable 'vz' is not initialized [cppcoreguidelines-init-variables] ALICE3/Core/Decayer.h:65:12: warning: variable 'px' is not initialized [cppcoreguidelines-init-variables] ALICE3/Core/Decayer.h:65:16: warning: variable 'py' is not initialized [cppcoreguidelines-init-variables] ALICE3/Core/Decayer.h:65:20: warning: variable 'e' is not initialized [cppcoreguidelines-init-variables] ALICE3/Core/Decayer.h:74:13: warning: variable 'sna' is not initialized [cppcoreguidelines-init-variables] ALICE3/Core/Decayer.h:74:18: warning: variable 'csa' is not initialized [cppcoreguidelines-init-variables] ALICE3/Core/Decayer.h:75:23: warning: no header providing "o2::math_utils::CircleXYf_t" is directly included [misc-include-cleaner] ALICE3/Core/Decayer.h:117:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] ALICE3/Core/Decayer.h:118:7: warning: uninitialized record type: 'particle' [cppcoreguidelines-pro-type-member-init] ``` #### `ALICE3/Core/DelphesO2LutWriter.cxx` ```text ALICE3/Core/DelphesO2LutWriter.cxx:31:1: warning: included header TMatrixD.h is not used directly [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:33:1: warning: included header TVectorD.h is not used directly [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:48:3: warning: no header providing "LOG" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:89:14: warning: no header providing "o2::track::TrackParCov" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:98:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:156:12: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:168:33: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:168:71: warning: no header providing "std::cosh" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:169:38: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:174:106: warning: no header providing "std::log" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:181:33: warning: no header providing "std::sinh" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:182:78: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:191:52: warning: no header providing "std::pow" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:209:14: warning: no header providing "std::isnan" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:226:8: warning: no header providing "std::ofstream" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:236:9: warning: no header providing "TParticlePDG" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:242:22: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:263:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ALICE3/Core/DelphesO2LutWriter.cxx:342:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ALICE3/Core/DelphesO2LutWriter.cxx:355:3: warning: no header providing "TMatrixDSym" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:366:3: warning: no header providing "TVectorD" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:370:3: warning: no header providing "TMatrixD" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:381:1: warning: no header providing "TGraph" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:403:3: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ALICE3/Core/DelphesO2LutWriter.cxx:416:14: warning: no header providing "Form" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.cxx:471:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ALICE3/Core/DelphesO2LutWriter.cxx:493:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ALICE3/Core/DelphesO2LutWriter.cxx:538:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] ``` #### `ALICE3/Core/DelphesO2LutWriter.h` ```text ALICE3/Core/DelphesO2LutWriter.h:53:17: warning: no header providing "size_t" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2LutWriter.h:90:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `ALICE3/Core/DelphesO2TrackSmearer.cxx` ```text ALICE3/Core/DelphesO2TrackSmearer.cxx:61:109: warning: no header providing "std::endl" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2TrackSmearer.cxx:64:7: warning: no header providing "strncmp" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2TrackSmearer.cxx:67:16: warning: no header providing "Form" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2TrackSmearer.cxx:69:10: warning: no header providing "std::ifstream" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2TrackSmearer.cxx:81:18: warning: no header providing "std::remove" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2TrackSmearer.cxx:104:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ALICE3/Core/DelphesO2TrackSmearer.cxx:148:24: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ALICE3/Core/DelphesO2TrackSmearer.cxx:203:67: warning: no header providing "std::log10" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2TrackSmearer.cxx:246:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ALICE3/Core/DelphesO2TrackSmearer.cxx:256:9: warning: no header providing "gRandom" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2TrackSmearer.cxx:271:41: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2TrackSmearer.cxx:281:12: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2TrackSmearer.cxx:296:3: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ALICE3/Core/DelphesO2TrackSmearer.cxx:327:22: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2TrackSmearer.cxx:327:32: warning: no header providing "std::sin" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2TrackSmearer.cxx:327:47: warning: no header providing "std::atan" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2TrackSmearer.cxx:327:57: warning: no header providing "std::exp" is directly included [misc-include-cleaner] ``` #### `ALICE3/Core/DelphesO2TrackSmearer.h` ```text ALICE3/Core/DelphesO2TrackSmearer.h:30:1: warning: included header TRandom.h is not used directly [misc-include-cleaner] ALICE3/Core/DelphesO2TrackSmearer.h:33:1: warning: included header fstream is not used directly [misc-include-cleaner] ALICE3/Core/DelphesO2TrackSmearer.h:34:1: warning: included header iostream is not used directly [misc-include-cleaner] ALICE3/Core/DelphesO2TrackSmearer.h:35:1: warning: included header map is not used directly [misc-include-cleaner] ALICE3/Core/DelphesO2TrackSmearer.h:58:14: warning: no header providing "pow" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2TrackSmearer.h:65:9: warning: variable 'bin' is not initialized [cppcoreguidelines-init-variables] ALICE3/Core/DelphesO2TrackSmearer.h:68:31: warning: no header providing "log10" is directly included [misc-include-cleaner] ALICE3/Core/DelphesO2TrackSmearer.h:80:9: warning: variable 'bin' is not initialized [cppcoreguidelines-init-variables] ALICE3/Core/DelphesO2TrackSmearer.h:203:13: warning: no header providing "abs" is directly included [misc-include-cleaner] ``` #### `ALICE3/Core/DetLayer.cxx` ```text ALICE3/Core/DetLayer.cxx:25:1: warning: included header vector is not used directly [misc-include-cleaner] ALICE3/Core/DetLayer.cxx:31:26: warning: no header providing "TString" is directly included [misc-include-cleaner] ALICE3/Core/DetLayer.cxx:62:27: warning: no header providing "TGraph" is directly included [misc-include-cleaner] ALICE3/Core/DetLayer.cxx:63:35: warning: no header providing "Form" is directly included [misc-include-cleaner] ``` #### `ALICE3/Core/DetLayer.h` ```text ALICE3/Core/DetLayer.h:30:8: warning: constructor does not initialize these fields: mR, mZ, mX0, mXrho, mResRPhi, mResZ, mEff, mType [cppcoreguidelines-pro-type-member-init] ALICE3/Core/DetLayer.h:84:15: warning: no header providing "std::ostream" is directly included [misc-include-cleaner] ``` #### `ALICE3/Core/FastTracker.cxx` ```text ALICE3/Core/FastTracker.cxx:20:1: warning: included header TMath.h is not used directly [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:21:1: warning: included header TMatrixD.h is not used directly [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:27:1: warning: included header fstream is not used directly [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:48:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:52:14: warning: no header providing "std::find" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:72:45: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:114:1: warning: no header providing "o2::fastsim::DetLayer" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:114:33: warning: no header providing "TString" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:166:8: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:302:14: warning: no header providing "Form" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:304:8: warning: no header providing "Int_t" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:305:5: warning: no header providing "Float_t" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:317:92: warning: no header providing "o2::ccdb::BasicCCDBManager" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:350:9: warning: no header providing "TGraph" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:354:9: warning: no header providing "TFile" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:359:21: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ALICE3/Core/FastTracker.cxx:383:55: warning: no header providing "o2::math_utils::sqrt" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:383:81: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:383:105: warning: no header providing "std::exp" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:398:30: warning: no header providing "o2::math_utils::tan" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:398:55: warning: no header providing "o2::math_utils::atan" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:456:9: warning: variable 'sx' is not initialized [cppcoreguidelines-init-variables] ALICE3/Core/FastTracker.cxx:456:13: warning: variable 'goodHit' is not initialized [cppcoreguidelines-init-variables] ALICE3/Core/FastTracker.cxx:464:39: warning: no header providing "o2::track::TrackParCov" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:471:3: warning: uninitialized record type: 'posIni' [cppcoreguidelines-pro-type-member-init] ALICE3/Core/FastTracker.cxx:471:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:473:36: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:477:8: warning: no header providing "size_t" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:515:7: warning: no header providing "LOGF" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:543:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:608:5: warning: uninitialized record type: 'spacePoint' [cppcoreguidelines-pro-type-member-init] ALICE3/Core/FastTracker.cxx:615:12: warning: no header providing "std::cos" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:615:46: warning: no header providing "std::sin" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:702:3: warning: no header providing "TMatrixDSym" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:719:48: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:722:34: warning: no header providing "TMath::Sign" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:722:74: warning: no header providing "sqrt" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:729:20: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ALICE3/Core/FastTracker.cxx:731:3: warning: no header providing "TMatrixD" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:732:3: warning: no header providing "TVectorD" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:773:7: warning: no header providing "fabs" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.cxx:785:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] ``` #### `ALICE3/Core/FastTracker.h` ```text ALICE3/Core/FastTracker.h:19:1: warning: included header Logger.h is not used directly [misc-include-cleaner] ALICE3/Core/FastTracker.h:102:22: warning: no header providing "TString" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.h:112:3: warning: no header providing "size_t" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.h:186:8: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.h:190:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] ALICE3/Core/FastTracker.h:204:15: warning: member 'mCrossSectionMinB' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] ALICE3/Core/FastTracker.h:229:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `ALICE3/Core/TOFResoALICE3.cxx` ```text ALICE3/Core/TOFResoALICE3.cxx:24:148: warning: no header providing "o2::pid::Parameters" is directly included [misc-include-cleaner] ALICE3/Core/TOFResoALICE3.cxx:35:41: warning: no header providing "sqrt" is directly included [misc-include-cleaner] ``` #### `ALICE3/Core/TOFResoALICE3.h` ```text ALICE3/Core/TOFResoALICE3.h:24:1: warning: included header DetectorResponse.h is not used directly [misc-include-cleaner] ALICE3/Core/TOFResoALICE3.h:25:1: warning: included header PIDTOF.h is not used directly [misc-include-cleaner] ALICE3/Core/TOFResoALICE3.h:38:21: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Core/TOFResoALICE3.h:38:21: warning: no header providing "abs" is directly included [misc-include-cleaner] ALICE3/Core/TOFResoALICE3.h:55:43: warning: no header providing "sqrt" is directly included [misc-include-cleaner] ALICE3/Core/TOFResoALICE3.h:58:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ALICE3/Core/TOFResoALICE3.h:66:53: warning: no header providing "M_PI" is directly included [misc-include-cleaner] ``` #### `ALICE3/Core/TrackUtilities.cxx` ```text ALICE3/Core/TrackUtilities.cxx:23:56: warning: no header providing "TLorentzVector" is directly included [misc-include-cleaner] ALICE3/Core/TrackUtilities.cxx:25:61: warning: no header providing "o2::track::TrackParCov" is directly included [misc-include-cleaner] ALICE3/Core/TrackUtilities.cxx:27:3: warning: uninitialized record type: 'params' [cppcoreguidelines-pro-type-member-init] ALICE3/Core/TrackUtilities.cxx:27:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] ALICE3/Core/TrackUtilities.cxx:29:9: warning: variable 's' is not initialized [cppcoreguidelines-init-variables] ALICE3/Core/TrackUtilities.cxx:29:12: warning: variable 'c' is not initialized [cppcoreguidelines-init-variables] ALICE3/Core/TrackUtilities.cxx:29:15: warning: variable 'x' is not initialized [cppcoreguidelines-init-variables] ALICE3/Core/TrackUtilities.cxx:30:19: warning: no header providing "o2::math_utils::sincos" is directly included [misc-include-cleaner] ALICE3/Core/TrackUtilities.cxx:31:19: warning: no header providing "o2::math_utils::rotateZInv" is directly included [misc-include-cleaner] ALICE3/Core/TrackUtilities.cxx:34:32: warning: no header providing "std::atan" is directly included [misc-include-cleaner] ALICE3/Core/TrackUtilities.cxx:34:42: warning: no header providing "std::exp" is directly included [misc-include-cleaner] ALICE3/Core/TrackUtilities.cxx:35:25: warning: no header providing "std::tan" is directly included [misc-include-cleaner] ``` #### `ALICE3/DataModel/A3DecayFinderTables.h` ```text ALICE3/DataModel/A3DecayFinderTables.h:24:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] ALICE3/DataModel/A3DecayFinderTables.h:27:23: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] ALICE3/DataModel/A3DecayFinderTables.h:78:69: warning: no header providing "std::array" is directly included [misc-include-cleaner] ALICE3/DataModel/A3DecayFinderTables.h:78:99: warning: no header providing "std::array" is directly included [misc-include-cleaner] ``` #### `ALICE3/DataModel/MID.h` ```text ALICE3/DataModel/MID.h:31:42: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] ``` #### `ALICE3/DataModel/OTFPIDTrk.h` ```text ALICE3/DataModel/OTFPIDTrk.h:55:43: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ALICE3/DataModel/OTFPIDTrk.h:75:34: warning: no header providing "LOG" is directly included [misc-include-cleaner] ``` #### `ALICE3/DataModel/OTFRICH.h` ```text ALICE3/DataModel/OTFRICH.h:49:43: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ALICE3/DataModel/OTFRICH.h:69:34: warning: no header providing "LOG" is directly included [misc-include-cleaner] ``` #### `ALICE3/DataModel/OTFStrangeness.h` ```text ALICE3/DataModel/OTFStrangeness.h:154:57: warning: no header providing "std::array" is directly included [misc-include-cleaner] ALICE3/DataModel/OTFStrangeness.h:164:42: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ALICE3/DataModel/OTFStrangeness.h:164:52: warning: no header providing "std::pow" is directly included [misc-include-cleaner] ALICE3/DataModel/OTFStrangeness.h:185:163: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] ALICE3/DataModel/OTFStrangeness.h:185:199: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] ALICE3/DataModel/OTFStrangeness.h:198:131: warning: no header providing "o2::constants::physics::MassKaonNeutral" is directly included [misc-include-cleaner] ALICE3/DataModel/OTFStrangeness.h:202:131: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] ``` #### `ALICE3/DataModel/OTFTOF.h` ```text ALICE3/DataModel/OTFTOF.h:91:43: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ALICE3/DataModel/OTFTOF.h:111:34: warning: no header providing "LOG" is directly included [misc-include-cleaner] ``` #### `ALICE3/ML/HfMlResponse3Prong.h` ```text ALICE3/ML/HfMlResponse3Prong.h:22:1: warning: included header map is not used directly [misc-include-cleaner] ALICE3/ML/HfMlResponse3Prong.h:23:1: warning: included header string is not used directly [misc-include-cleaner] ALICE3/ML/HfMlResponse3Prong.h:24:1: warning: included header vector is not used directly [misc-include-cleaner] ``` #### `ALICE3/Macros/drawFastTracker.C` ```text ALICE3/Macros/drawFastTracker.C:24:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] ALICE3/Macros/drawFastTracker.C:33:3: warning: no header providing "TParticlePDG" is directly included [misc-include-cleaner] ALICE3/Macros/drawFastTracker.C:36:5: warning: no header providing "LOG" is directly included [misc-include-cleaner] ALICE3/Macros/drawFastTracker.C:45:8: warning: Value stored to 'field' during its initialization is never read [clang-analyzer-deadcode.DeadStores] ALICE3/Macros/drawFastTracker.C:45:8: warning: unused variable 'field' [clang-diagnostic-unused-variable] ALICE3/Macros/drawFastTracker.C:48:36: warning: no header providing "fair::Verbosity" is directly included [misc-include-cleaner] ALICE3/Macros/drawFastTracker.C:52:5: warning: no header providing "Double_t" is directly included [misc-include-cleaner] ALICE3/Macros/drawFastTracker.C:77:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] ALICE3/Macros/drawFastTracker.C:94:14: warning: no header providing "o2::track::TrackParCov" is directly included [misc-include-cleaner] ALICE3/Macros/drawFastTracker.C:128:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] ALICE3/Macros/drawFastTracker.C:150:30: warning: no header providing "Form" is directly included [misc-include-cleaner] ``` #### `ALICE3/Macros/testFastTracker.C` ```text ALICE3/Macros/testFastTracker.C:18:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] ALICE3/Macros/testFastTracker.C:19:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] ALICE3/Macros/testFastTracker.C:23:27: warning: no header providing "std::string" is directly included [misc-include-cleaner] ALICE3/Macros/testFastTracker.C:31:34: error: no viable conversion from 'std::string' (aka 'basic_string') to 'GeometryContainer::GeometryEntry' [clang-diagnostic-error] ``` #### `ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx` ```text ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:22:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:24:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:25:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:26:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:27:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:28:1: warning: included header PVertexer.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:29:1: warning: included header PVertexerHelpers.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:30:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:35:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:37:1: warning: included header DCA.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:38:1: warning: included header InteractionSampler.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:71:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:72:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:75:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:76:12: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:78:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:80:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:84:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:85:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:85:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:88:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:98:42: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:115:17: warning: no header providing "std::find" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:121:5: warning: no header providing "u_int64_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:128:20: warning: no header providing "o2::track::TrackParCov" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:131:14: warning: no header providing "size_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:201:50: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:202:13: warning: variable 'eta' is not initialized [cppcoreguidelines-init-variables] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:203:23: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:205:13: warning: variable 'y' is not initialized [cppcoreguidelines-init-variables] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:210:27: warning: no header providing "std::log" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:241:15: warning: variable 'eta' is not initialized [cppcoreguidelines-init-variables] ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:244:15: warning: variable 'y' is not initialized [cppcoreguidelines-init-variables] ``` #### `ALICE3/TableProducer/OTF/onTheFlyDetectorGeometryProvider.cxx` ```text ALICE3/TableProducer/OTF/onTheFlyDetectorGeometryProvider.cxx:30:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyDetectorGeometryProvider.cxx:31:72: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDetectorGeometryProvider.cxx:32:18: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDetectorGeometryProvider.cxx:35:18: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDetectorGeometryProvider.cxx:36:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDetectorGeometryProvider.cxx:49:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDetectorGeometryProvider.cxx:49:23: warning: no header providing "Form" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDetectorGeometryProvider.cxx:49:94: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDetectorGeometryProvider.cxx:55:14: warning: no header providing "std::ifstream" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDetectorGeometryProvider.cxx:76:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDetectorGeometryProvider.cxx:83:25: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyDetectorGeometryProvider.cxx:83:68: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] ``` #### `ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx` ```text ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:39:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:42:1: warning: included header CcdbApi.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:43:1: warning: included header GeomConstants.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:46:1: warning: included header NameConf.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:47:1: warning: included header MeanVertexObject.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:48:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:49:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:51:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:56:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:58:1: warning: included header DCA.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:59:1: warning: included header HelixHelper.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:64:1: warning: included header TString.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:77:8: warning: constructor does not initialize these fields: pdg, ccdb [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:78:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:82:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:87:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:137:20: warning: no header providing "std::unique_ptr" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:143:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:290:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:300:25: warning: unused local variable 'histPath' of type 'const std::string' (aka 'const basic_string') [bugprone-unused-local-non-trivial-variable] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:301:34: warning: no header providing "std::make_unique" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:353:13: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:358:82: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:362:44: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:440:38: warning: no header providing "o2::track::TrackParCov" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:442:21: warning: no header providing "o2::math_utils::CircleXYf_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:443:11: warning: variable 'sna' is not initialized [cppcoreguidelines-init-variables] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:443:16: warning: variable 'csa' is not initialized [cppcoreguidelines-init-variables] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:550:33: warning: no header providing "std::lower_bound" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:729:10: warning: no header providing "std::array" is directly included [misc-include-cleaner] ``` #### `ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx` ```text ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:33:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:36:1: warning: included header CcdbApi.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:37:1: warning: included header GeomConstants.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:38:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:40:1: warning: included header NameConf.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:41:1: warning: included header MeanVertexObject.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:42:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:43:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:45:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:50:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:52:1: warning: included header DCA.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:53:1: warning: included header HelixHelper.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:68:6: warning: no header providing "std::array" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:68:17: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:77:8: warning: constructor does not initialize these fields: pdg, ccdb [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:78:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:83:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:91:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:92:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:136:20: warning: no header providing "std::unique_ptr" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:142:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:143:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:149:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:159:25: warning: unused local variable 'histPath' of type 'const std::string' (aka 'const basic_string') [bugprone-unused-local-non-trivial-variable] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:160:34: warning: no header providing "std::make_unique" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:212:13: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:212:88: warning: no header providing "Form" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:214:42: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:215:50: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:235:165: warning: no header providing "M_PI" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:265:23: warning: unused local variable 'nameTitleInner' of type 'std::string' (aka 'basic_string') [bugprone-unused-local-non-trivial-variable] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:266:23: warning: unused local variable 'nameTitleOuter' of type 'std::string' (aka 'basic_string') [bugprone-unused-local-non-trivial-variable] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:267:23: warning: unused local variable 'nameTitleInnerDelta' of type 'std::string' (aka 'basic_string') [bugprone-unused-local-non-trivial-variable] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:268:23: warning: unused local variable 'nameTitleOuterDelta' of type 'std::string' (aka 'basic_string') [bugprone-unused-local-non-trivial-variable] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:287:17: warning: member 'layerRadius' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:288:17: warning: member 'layerLength' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:289:17: warning: member 'pixelDimensionZ' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:290:17: warning: member 'pixelDimensionRPhi' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:291:17: warning: member 'fractionInactive' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:292:17: warning: member 'magField' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:294:5: warning: no header providing "TAxis" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:299:5: warning: no header providing "TH2F" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:327:66: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:355:30: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:361:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:384:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:391:7: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:398:7: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:413:47: warning: no header providing "o2::track::TrackParCov" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:418:13: warning: variable 'x' is not initialized [cppcoreguidelines-init-variables] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:418:16: warning: variable 'y' is not initialized [cppcoreguidelines-init-variables] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:418:19: warning: variable 'z' is not initialized [cppcoreguidelines-init-variables] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:423:12: warning: variable 'b' is not initialized [cppcoreguidelines-init-variables] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:424:19: warning: no header providing "ROOT::Math::PositionVector3D" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:455:21: warning: no header providing "o2::math_utils::CircleXYf_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:456:11: warning: variable 'sna' is not initialized [cppcoreguidelines-init-variables] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:456:16: warning: variable 'csa' is not initialized [cppcoreguidelines-init-variables] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:460:39: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:463:73: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:464:7: warning: Value stored to 'length' is never read [clang-analyzer-deadcode.DeadStores] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:486:7: warning: uninitialized record type: 'mom' [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:492:7: warning: uninitialized record type: 'startPoint' [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:505:36: warning: no header providing "std::acos" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:589:50: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:621:30: warning: no header providing "std::pow" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:621:57: warning: no header providing "std::cosh" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:621:78: warning: no header providing "std::acos" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:622:48: warning: no header providing "std::sinh" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:623:39: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:623:50: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:878:49: warning: no header providing "std::sin" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:878:64: warning: no header providing "std::atan" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:878:74: warning: no header providing "std::exp" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:891:22: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] ``` #### `ALICE3/TableProducer/OTF/onTheFlyTracker.cxx` ```text ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:50:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:71:17: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:79:8: warning: constructor does not initialize these fields: thisCascade, thisV0, pdgDB, ccdb [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:80:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:101:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:121:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:122:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:122:52: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:180:36: warning: no header providing "o2::dataformats::PrimaryVertex" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:186:20: warning: no header providing "std::unique_ptr" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:190:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:193:9: warning: constructor does not initialize these fields: mcLabel, isDecayDau, isWeakDecayDau, isUsedInCascading, nSiliconHits, nTPCHits [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:193:41: warning: no header providing "o2::track::TrackParCov" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:195:38: warning: no header providing "o2::dataformats::TimeStampWithError" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:201:58: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:282:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:285:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:286:25: warning: no header providing "o2::framework::HistPtr" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:296:19: warning: no header providing "o2::InteractionRecord" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:304:21: warning: no header providing "o2::ccdb::BasicCCDBManager" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:309:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:320:34: warning: no header providing "std::make_unique" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:378:64: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:379:90: warning: no header providing "M_PI" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:398:39: warning: no header providing "std::make_unique" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:407:64: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:409:54: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:441:19: warning: no header providing "TH1" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:453:56: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:461:28: warning: no header providing "TH2" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:545:15: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:556:32: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:589:57: warning: no header providing "std::log" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:591:11: warning: variable 'sna' is not initialized [cppcoreguidelines-init-variables] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:591:16: warning: variable 'csa' is not initialized [cppcoreguidelines-init-variables] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:592:21: warning: no header providing "o2::math_utils::CircleXYf_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:594:40: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:596:63: warning: no header providing "std::cos" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:596:113: warning: no header providing "std::sin" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:707:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:715:29: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:716:46: warning: no header providing "std::find" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:736:5: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:765:34: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:790:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:796:9: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:818:14: warning: no header providing "size_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:823:32: warning: no header providing "Form" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:823:104: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:837:64: warning: no header providing "TMCProcess" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:871:79: warning: no header providing "o2::math_utils::abs" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:880:102: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:887:22: warning: no header providing "TMath::IsNaN" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:946:13: warning: uninitialized record type: 'pos' [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:947:13: warning: uninitialized record type: 'posCascade' [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:948:13: warning: uninitialized record type: 'posP' [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:949:13: warning: uninitialized record type: 'negP' [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:950:13: warning: uninitialized record type: 'bachP' [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:965:43: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:987:13: warning: Value stored to 'nCand' is never read [clang-analyzer-deadcode.DeadStores] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1057:19: warning: uninitialized record type: 'posClusterCandidate' [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1060:34: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1063:51: warning: no header providing "std::asin" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1064:55: warning: no header providing "std::cos" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1065:55: warning: no header providing "std::sin" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1069:28: warning: no header providing "std::isnan" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1075:28: warning: no header providing "TMath::Cos" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1075:73: warning: no header providing "TMath::Sin" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1081:36: warning: no header providing "o2::track::TrackParametrization" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1184:99: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1191:116: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1198:116: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1237:13: warning: uninitialized record type: 'pos' [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1238:13: warning: uninitialized record type: 'posP' [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1239:13: warning: uninitialized record type: 'negP' [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1365:23: warning: no header providing "o2::MCCompLabel" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1369:23: warning: no header providing "o2::MCEventLabel" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1371:36: warning: no header providing "o2::dataformats::GlobalTrackID" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1395:12: warning: no header providing "Int_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1436:19: warning: no header providing "o2::aod::track::TrackTypeEnum" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1436:57: warning: no header providing "o2::aod::track::Track" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1440:32: warning: slicing object from type 'TrackAlice3' to 'TrackParametrizationWithError<>' discards 36 bytes of state [cppcoreguidelines-slicing] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1488:76: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1489:44: warning: no header providing "int8_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1508:32: warning: slicing object from type 'TrackAlice3' to 'TrackParametrizationWithError<>' discards 36 bytes of state [cppcoreguidelines-slicing] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1672:9: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1770:32: warning: slicing object from type 'TrackAlice3' to 'TrackParametrizationWithError<>' discards 36 bytes of state [cppcoreguidelines-slicing] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1816:32: warning: slicing object from type 'TrackAlice3' to 'TrackParametrizationWithError<>' discards 36 bytes of state [cppcoreguidelines-slicing] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1863:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1869:3: warning: no header providing "o2::framework::Spawns" is directly included [misc-include-cleaner] ``` #### `ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx` ```text ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:23:1: warning: included header DelphesO2TrackSmearer.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:26:1: warning: included header OTFCollision.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:28:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:29:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:33:1: warning: included header GeomConstants.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:34:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:35:1: warning: included header NameConf.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:36:1: warning: included header MeanVertexObject.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:37:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:38:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:40:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:45:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:47:1: warning: included header DCA.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:48:1: warning: included header HelixHelper.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:52:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:53:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:55:1: warning: included header TVector3.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:80:18: warning: no header providing "size_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:174:9: warning: variable 'currentPdgIdx' is not initialized [cppcoreguidelines-init-variables] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:211:11: warning: no header providing "TH1F" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:299:39: warning: no header providing "TH2" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:303:8: warning: constructor does not initialize these fields: pdg, ccdb [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:317:5: warning: no header providing "TH1D" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:342:39: warning: no header providing "o2::track::TrackParCov" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:345:21: warning: no header providing "o2::math_utils::CircleXYf_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:346:11: warning: variable 'sna' is not initialized [cppcoreguidelines-init-variables] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:346:16: warning: variable 'csa' is not initialized [cppcoreguidelines-init-variables] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:352:7: warning: Value stored to 'length' is never read [clang-analyzer-deadcode.DeadStores] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:367:7: warning: uninitialized record type: 'mom' [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:372:7: warning: uninitialized record type: 'startPoint' [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:391:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:394:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:398:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:400:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:434:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:478:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:484:88: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:486:84: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:567:7: warning: uninitialized record type: 'nSigmaValues' [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx:611:7: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] ``` #### `ALICE3/TableProducer/alice3-centrality.cxx` ```text ALICE3/TableProducer/alice3-centrality.cxx:17:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-centrality.cxx:26:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/alice3-centrality.cxx:27:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-centrality.cxx:28:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-centrality.cxx:30:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-centrality.cxx:30:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-centrality.cxx:31:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-centrality.cxx:38:3: warning: no header providing "TH1D" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-centrality.cxx:40:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-centrality.cxx:42:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-centrality.cxx:44:5: warning: no header providing "TString" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-centrality.cxx:44:19: warning: no header providing "Form" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-centrality.cxx:45:50: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-centrality.cxx:54:31: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-centrality.cxx:54:64: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-centrality.cxx:54:74: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-centrality.cxx:64:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-centrality.cxx:68:9: warning: no header providing "fabs" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-centrality.cxx:77:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/TableProducer/alice3-centrality.cxx:77:11: warning: no header providing "abs" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-centrality.cxx:77:42: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ``` #### `ALICE3/TableProducer/alice3-correlatorDDbar.cxx` ```text ALICE3/TableProducer/alice3-correlatorDDbar.cxx:17:1: warning: included header HfHelper.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-correlatorDDbar.cxx:22:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-correlatorDDbar.cxx:23:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-correlatorDDbar.cxx:25:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-correlatorDDbar.cxx:43:10: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-correlatorDDbar.cxx:43:74: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-correlatorDDbar.cxx:63:48: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-correlatorDDbar.cxx:72:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-correlatorDDbar.cxx:73:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-correlatorDDbar.cxx:74:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-correlatorDDbar.cxx:77:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-correlatorDDbar.cxx:87:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-correlatorDDbar.cxx:87:18: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-correlatorDDbar.cxx:93:84: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-correlatorDDbar.cxx:109:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-correlatorDDbar.cxx:133:25: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-correlatorDDbar.cxx:141:63: warning: no header providing "o2::analysis::findBin" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-correlatorDDbar.cxx:195:22: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-correlatorDDbar.cxx:209:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `ALICE3/TableProducer/alice3-decayfinder.cxx` ```text ALICE3/TableProducer/alice3-decayfinder.cxx:24:1: warning: included header RICH.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:27:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:31:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:33:1: warning: included header MeanVertexObject.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:34:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:35:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:36:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:38:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:41:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:49:1: warning: included header iterator is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:50:1: warning: included header map is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:51:1: warning: included header utility is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:69:8: warning: constructor does not initialize these fields: dmeson, mCandidate3Prong [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/alice3-decayfinder.cxx:72:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:81:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:82:10: warning: no header providing "std::string" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:83:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:136:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:138:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:152:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:152:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:154:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:160:20: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:274:5: warning: uninitialized record type: 'posP' [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/alice3-decayfinder.cxx:275:5: warning: uninitialized record type: 'negP' [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/alice3-decayfinder.cxx:278:28: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:304:5: warning: no header providing "int8_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:306:72: warning: no header providing "o2::constants::physics::Pdg" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:306:94: warning: no header providing "kPiPlus" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:306:104: warning: no header providing "kKPlus" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:338:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:374:22: warning: no header providing "o2::dataformats::DCA" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:389:12: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] ALICE3/TableProducer/alice3-decayfinder.cxx:389:17: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] ALICE3/TableProducer/alice3-decayfinder.cxx:470:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:495:26: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:504:40: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:508:40: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:520:38: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:571:56: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:588:27: warning: no header providing "TH1" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:606:128: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:612:31: warning: no header providing "kProton" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:614:56: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:615:56: warning: no header providing "o2::constants::physics::MassKaonCharged" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:616:56: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decayfinder.cxx:1064:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `ALICE3/TableProducer/alice3-decaypreselector.cxx` ```text ALICE3/TableProducer/alice3-decaypreselector.cxx:20:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:21:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:26:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:27:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:28:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:29:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:31:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:32:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:33:1: warning: included header MeanVertexObject.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:34:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:35:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:36:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:37:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:38:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:41:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:43:1: warning: included header Track.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:48:1: warning: included header iterator is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:49:1: warning: included header map is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:50:1: warning: included header utility is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:56:12: warning: using decl 'array' is unused [misc-unused-using-decls] ALICE3/TableProducer/alice3-decaypreselector.cxx:71:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:74:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:78:15: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:80:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:80:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:102:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:104:25: warning: no header providing "TH1" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:104:83: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:118:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:139:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-decaypreselector.cxx:238:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `ALICE3/TableProducer/alice3-dq-table-maker.cxx` ```text ALICE3/TableProducer/alice3-dq-table-maker.cxx:24:1: warning: included header MuonMatchingMlResponse.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:26:1: warning: included header ReducedInfoTables.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:34:1: warning: included header TriggerAliases.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:35:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:37:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:38:1: warning: included header McCollisionExtra.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:39:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:42:1: warning: included header InteractionRecord.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:43:1: warning: included header RecoContainer.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:45:1: warning: included header ROFRecord.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:46:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:47:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:48:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:49:1: warning: included header PVertexerParams.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:50:1: warning: included header VertexTrackMatcher.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:52:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:55:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:57:1: warning: included header Primitive2D.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:58:1: warning: included header PrimaryVertex.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:59:1: warning: included header VtxTrackIndex.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:60:1: warning: included header VtxTrackRef.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:68:1: warning: included header unordered_map is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:86:18: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:91:8: warning: constructor does not initialize these fields: fHistMan, fEventCut [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/alice3-dq-table-maker.cxx:93:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:113:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:119:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:120:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:148:12: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:150:22: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:154:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:166:42: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:173:5: warning: no header providing "TString" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:191:26: warning: no header providing "Form" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:197:21: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:271:30: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ALICE3/TableProducer/alice3-dq-table-maker.cxx:315:5: warning: no header providing "TH2I" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:315:135: warning: no header providing "o2::aod::evsel::kNsel" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:321:63: warning: no header providing "o2::aod::evsel::selectionLabels" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:327:5: warning: no header providing "TH1I" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:435:8: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ALICE3/TableProducer/alice3-dq-table-maker.cxx:454:8: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ALICE3/TableProducer/alice3-dq-table-maker.cxx:511:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ALICE3/TableProducer/alice3-dq-table-maker.cxx:596:43: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-dq-table-maker.cxx:721:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ALICE3/TableProducer/alice3-dq-table-maker.cxx:725:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ALICE3/TableProducer/alice3-dq-table-maker.cxx:737:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `ALICE3/TableProducer/alice3-trackextension.cxx` ```text ALICE3/TableProducer/alice3-trackextension.cxx:27:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-trackextension.cxx:28:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-trackextension.cxx:32:10: warning: no header providing "std::array" is directly included [misc-include-cleaner] ``` #### `ALICE3/TableProducer/alice3-trackselection.cxx` ```text ALICE3/TableProducer/alice3-trackselection.cxx:19:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-trackselection.cxx:21:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3-trackselection.cxx:33:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-trackselection.cxx:34:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-trackselection.cxx:34:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-trackselection.cxx:36:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-trackselection.cxx:40:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-trackselection.cxx:42:84: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-trackselection.cxx:43:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-trackselection.cxx:43:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-trackselection.cxx:52:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-trackselection.cxx:52:31: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-trackselection.cxx:52:75: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-trackselection.cxx:60:7: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3-trackselection.cxx:61:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/TableProducer/alice3-trackselection.cxx:61:11: warning: no header providing "abs" is directly included [misc-include-cleaner] ``` #### `ALICE3/TableProducer/alice3HfSelector3Prong.cxx` ```text ALICE3/TableProducer/alice3HfSelector3Prong.cxx:21:1: warning: included header OTFPIDTrk.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3HfSelector3Prong.cxx:22:1: warning: included header OTFRICH.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3HfSelector3Prong.cxx:23:1: warning: included header OTFTOF.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3HfSelector3Prong.cxx:24:1: warning: included header RICH.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3HfSelector3Prong.cxx:39:1: warning: included header Logger.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3HfSelector3Prong.cxx:44:1: warning: included header array is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3HfSelector3Prong.cxx:46:1: warning: included header numeric is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3HfSelector3Prong.cxx:124:27: warning: no header providing "TH1" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3HfSelector3Prong.cxx:166:23: warning: no header providing "o2::analysis::findBin" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3HfSelector3Prong.cxx:275:9: warning: no header providing "SETBIT" is directly included [misc-include-cleaner] ``` #### `ALICE3/TableProducer/alice3HfTreeCreator3Prong.cxx` ```text ALICE3/TableProducer/alice3HfTreeCreator3Prong.cxx:19:1: warning: included header OTFPIDTrk.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3HfTreeCreator3Prong.cxx:20:1: warning: included header OTFRICH.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3HfTreeCreator3Prong.cxx:21:1: warning: included header OTFTOF.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3HfTreeCreator3Prong.cxx:22:1: warning: included header RICH.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3HfTreeCreator3Prong.cxx:26:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3HfTreeCreator3Prong.cxx:36:1: warning: included header vector is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3HfTreeCreator3Prong.cxx:295:15: warning: no header providing "std::accumulate" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3HfTreeCreator3Prong.cxx:305:22: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `ALICE3/TableProducer/alice3MulticharmFinder.cxx` ```text ALICE3/TableProducer/alice3MulticharmFinder.cxx:31:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:35:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:38:1: warning: included header MeanVertexObject.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:39:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:40:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:41:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:43:1: warning: included header PVertexer.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:45:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:48:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:55:1: warning: included header iterator is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:58:1: warning: included header utility is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:69:44: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:75:8: warning: constructor does not initialize these fields: thisXiCcandidate, thisXiCCcandidate [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/alice3MulticharmFinder.cxx:78:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:84:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:129:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:130:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:151:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:151:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:152:25: warning: no header providing "o2::framework::HistPtr" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:160:20: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:164:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:164:85: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:185:34: warning: no header providing "o2::track::kLabCovMatSize" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:396:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:421:55: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:428:14: warning: no header providing "std::find" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:439:65: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:446:59: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:510:16: warning: no header providing "TH2" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:526:14: warning: no header providing "TH1" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:657:28: warning: no header providing "o2::dataformats::DCA" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:777:22: warning: no header providing "TH3" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3MulticharmFinder.cxx:844:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `ALICE3/TableProducer/alice3TrackingTranslator.cxx` ```text ALICE3/TableProducer/alice3TrackingTranslator.cxx:28:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3TrackingTranslator.cxx:31:1: warning: included header TrackParametrizationWithError.h is not used directly [misc-include-cleaner] ALICE3/TableProducer/alice3TrackingTranslator.cxx:50:1: warning: no header providing "TString" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3TrackingTranslator.cxx:73:18: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3TrackingTranslator.cxx:75:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3TrackingTranslator.cxx:80:5: warning: no header providing "gInterpreter" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3TrackingTranslator.cxx:89:5: warning: constructor does not initialize these fields: mTree [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/alice3TrackingTranslator.cxx:101:24: warning: no header providing "Long64_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3TrackingTranslator.cxx:175:5: warning: no header providing "UInt_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3TrackingTranslator.cxx:176:17: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3TrackingTranslator.cxx:191:34: warning: no header providing "std::uint32_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3TrackingTranslator.cxx:226:7: warning: no header providing "TIter" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3TrackingTranslator.cxx:227:20: warning: variable 'file' is not initialized [cppcoreguidelines-init-variables] ALICE3/TableProducer/alice3TrackingTranslator.cxx:313:13: warning: no header providing "size_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3TrackingTranslator.cxx:330:9: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3TrackingTranslator.cxx:331:46: warning: no header providing "o2::aod::mcparticle::enums::PhysicalPrimary" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3TrackingTranslator.cxx:379:9: warning: no header providing "int8_t" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3TrackingTranslator.cxx:405:14: warning: no header providing "std::array" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3TrackingTranslator.cxx:413:43: warning: no header providing "o2::aod::track::TrackTypeEnum" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3TrackingTranslator.cxx:463:9: warning: no header providing "int32_t" is directly included [misc-include-cleaner] ``` #### `ALICE3/TableProducer/alice3strangenessFinder.cxx` ```text ALICE3/TableProducer/alice3strangenessFinder.cxx:48:8: warning: constructor does not initialize these fields: v0cand [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/alice3strangenessFinder.cxx:51:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3strangenessFinder.cxx:51:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3strangenessFinder.cxx:97:10: warning: no header providing "std::array" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3strangenessFinder.cxx:105:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3strangenessFinder.cxx:120:37: warning: no header providing "o2::base::Propagator" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3strangenessFinder.cxx:122:34: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3strangenessFinder.cxx:164:5: warning: uninitialized record type: 'posP' [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/alice3strangenessFinder.cxx:165:5: warning: uninitialized record type: 'negP' [cppcoreguidelines-pro-type-member-init] ALICE3/TableProducer/alice3strangenessFinder.cxx:168:26: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3strangenessFinder.cxx:187:17: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3strangenessFinder.cxx:187:28: warning: no header providing "std::pow" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3strangenessFinder.cxx:208:24: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3strangenessFinder.cxx:223:38: warning: no header providing "kK0Short" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3strangenessFinder.cxx:224:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3strangenessFinder.cxx:225:45: warning: no header providing "kLambda0" is directly included [misc-include-cleaner] ALICE3/TableProducer/alice3strangenessFinder.cxx:227:45: warning: no header providing "kLambda0Bar" is directly included [misc-include-cleaner] ``` #### `ALICE3/Tasks/ECALqa.cxx` ```text ALICE3/Tasks/ECALqa.cxx:25:1: warning: included header PID.h is not used directly [misc-include-cleaner] ALICE3/Tasks/ECALqa.cxx:37:1: warning: no header providing "DECLARE_SOA_INDEX_COLUMN" is directly included [misc-include-cleaner] ALICE3/Tasks/ECALqa.cxx:44:1: warning: no header providing "DECLARE_SOA_INDEX_TABLE_USER" is directly included [misc-include-cleaner] ALICE3/Tasks/ECALqa.cxx:44:47: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] ALICE3/Tasks/ECALqa.cxx:45:47: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] ALICE3/Tasks/ECALqa.cxx:49:3: warning: no header providing "o2::framework::Builds" is directly included [misc-include-cleaner] ALICE3/Tasks/ECALqa.cxx:51:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/Tasks/ECALqa.cxx:57:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/Tasks/ECALqa.cxx:61:58: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] ALICE3/Tasks/ECALqa.cxx:71:50: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] ALICE3/Tasks/ECALqa.cxx:74:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] ALICE3/Tasks/ECALqa.cxx:74:66: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] ALICE3/Tasks/ECALqa.cxx:77:27: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] ALICE3/Tasks/ECALqa.cxx:79:27: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] ALICE3/Tasks/ECALqa.cxx:85:32: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ALICE3/Tasks/ECALqa.cxx:95:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] ALICE3/Tasks/ECALqa.cxx:95:43: warning: no header providing "Form" is directly included [misc-include-cleaner] ``` #### `ALICE3/Tasks/alice3-cdeuteron.cxx` ```text ALICE3/Tasks/alice3-cdeuteron.cxx:16:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:24:1: warning: included header PID.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:33:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:49:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:52:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:64:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:84:11: warning: no header providing "TString" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:84:25: warning: no header providing "Form" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:88:42: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:89:25: warning: no header providing "TH1" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:121:46: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:177:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:177:17: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:177:64: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:179:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:200:23: warning: no header providing "o2::math_utils::Point3D" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:231:10: warning: no header providing "std::array" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:249:13: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-cdeuteron.cxx:279:15: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-cdeuteron.cxx:310:17: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-cdeuteron.cxx:316:15: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-cdeuteron.cxx:316:40: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-cdeuteron.cxx:319:15: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-cdeuteron.cxx:319:48: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-cdeuteron.cxx:322:15: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-cdeuteron.cxx:322:40: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-cdeuteron.cxx:326:15: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-cdeuteron.cxx:326:40: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-cdeuteron.cxx:329:15: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-cdeuteron.cxx:329:40: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-cdeuteron.cxx:332:15: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-cdeuteron.cxx:332:44: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-cdeuteron.cxx:346:15: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-cdeuteron.cxx:346:40: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-cdeuteron.cxx:349:15: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-cdeuteron.cxx:349:40: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-cdeuteron.cxx:368:13: warning: no header providing "Printf" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:400:38: warning: no header providing "sqrt" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:410:15: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-cdeuteron.cxx:432:46: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:478:34: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:478:48: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:478:69: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:479:38: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:480:48: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:480:67: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:480:91: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:480:113: warning: no header providing "o2::aod::TracksCov" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:486:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-cdeuteron.cxx:490:111: warning: no header providing "o2::aod::TracksCovIU" is directly included [misc-include-cleaner] ``` #### `ALICE3/Tasks/alice3-dilepton.cxx` ```text ALICE3/Tasks/alice3-dilepton.cxx:29:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3-dilepton.cxx:57:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dilepton.cxx:72:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dilepton.cxx:74:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dilepton.cxx:76:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dilepton.cxx:86:43: warning: no header providing "TMath::TwoPi" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dilepton.cxx:91:54: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dilepton.cxx:97:61: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dilepton.cxx:146:5: warning: no header providing "o2::framework::HistogramConfigSpec" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dilepton.cxx:146:32: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dilepton.cxx:150:18: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dilepton.cxx:192:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dilepton.cxx:306:15: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dilepton.cxx:324:17: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dilepton.cxx:588:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dilepton.cxx:718:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `ALICE3/Tasks/alice3-dq-efficiency.cxx` ```text ALICE3/Tasks/alice3-dq-efficiency.cxx:29:1: warning: included header OTFPIDTrk.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:30:1: warning: included header OTFRICH.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:31:1: warning: included header OTFTOF.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:32:1: warning: included header collisionAlice3.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:33:1: warning: included header tracksAlice3.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:36:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:37:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:38:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:39:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:40:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:47:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:48:1: warning: included header TH3F.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:50:1: warning: included header TList.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:51:1: warning: included header TObjString.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:76:68: warning: no header providing "int8_t" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:139:18: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:149:8: warning: constructor does not initialize these fields: fEventCut [cppcoreguidelines-pro-type-member-init] ALICE3/Tasks/alice3-dq-efficiency.cxx:153:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:166:12: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:168:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:196:44: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:280:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:286:8: warning: constructor does not initialize these fields: fHistMan [cppcoreguidelines-pro-type-member-init] ALICE3/Tasks/alice3-dq-efficiency.cxx:329:30: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ALICE3/Tasks/alice3-dq-efficiency.cxx:546:8: warning: constructor does not initialize these fields: fPairCut, fPrefilterMask, fPrefilterCutBit [cppcoreguidelines-pro-type-member-init] ALICE3/Tasks/alice3-dq-efficiency.cxx:731:8: warning: constructor does not initialize these fields: fHistMan, fTrackFilterMask, fNCutsBarrel, fNPairCuts, fEnableBarrelHistos [cppcoreguidelines-pro-type-member-init] ALICE3/Tasks/alice3-dq-efficiency.cxx:741:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:744:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:1578:8: warning: constructor does not initialize these fields: fHistMan, fNPairHistPrefixes, fLegAFilterMask, fLegBFilterMask, fLegCFilterMask, fCommonTrackCutMask, fNLegCuts, fNCommonTrackCuts [cppcoreguidelines-pro-type-member-init] ALICE3/Tasks/alice3-dq-efficiency.cxx:1648:22: warning: no header providing "int32_t" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:1680:29: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ALICE3/Tasks/alice3-dq-efficiency.cxx:1732:9: warning: variable 'commonCutIdx' is not initialized [cppcoreguidelines-init-variables] ALICE3/Tasks/alice3-dq-efficiency.cxx:1749:31: warning: no header providing "std::floor" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:1749:44: warning: no header providing "TMath::Log2" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-dq-efficiency.cxx:1770:9: warning: variable 'legAIdx' is not initialized [cppcoreguidelines-init-variables] ALICE3/Tasks/alice3-dq-efficiency.cxx:1771:9: warning: variable 'legBIdx' is not initialized [cppcoreguidelines-init-variables] ALICE3/Tasks/alice3-dq-efficiency.cxx:1772:9: warning: variable 'legCIdx' is not initialized [cppcoreguidelines-init-variables] ALICE3/Tasks/alice3-dq-efficiency.cxx:2507:8: warning: no header providing "Int_t" is directly included [misc-include-cleaner] ``` #### `ALICE3/Tasks/alice3-lutmaker.cxx` ```text ALICE3/Tasks/alice3-lutmaker.cxx:18:1: warning: included header Track.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:19:1: warning: included header MCUtils.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:25:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:28:16: warning: no header providing "o2::framework::VariantType" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:36:8: warning: no header providing "std::swap" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:41:37: warning: no header providing "o2::track::pid_constants::ID" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:44:42: warning: no header providing "kElectron" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:44:53: warning: no header providing "kMuonMinus" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:44:65: warning: no header providing "kPiPlus" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:44:74: warning: no header providing "kKPlus" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:44:82: warning: no header providing "kProton" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:47:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:64:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:64:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:66:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:68:11: warning: no header providing "TString" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:68:33: warning: no header providing "Form" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:69:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:77:25: warning: unchecked access to optional value [bugprone-unchecked-optional-access] ALICE3/Tasks/alice3-lutmaker.cxx:81:35: warning: no header providing "pow" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:83:27: warning: no header providing "std::nullopt" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:92:78: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:97:57: warning: no header providing "o2::framework::kTProfile2D" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:151:60: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:201:31: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:202:31: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:202:45: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:202:66: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:203:45: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:203:62: warning: no header providing "o2::aod::TracksCov" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:203:82: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:204:31: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:206:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:222:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:266:80: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:304:16: warning: no header providing "std::find" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-lutmaker.cxx:317:61: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] ``` #### `ALICE3/Tasks/alice3-qa-multiplicity.cxx` ```text ALICE3/Tasks/alice3-qa-multiplicity.cxx:16:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3-qa-multiplicity.cxx:24:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-multiplicity.cxx:24:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-multiplicity.cxx:26:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-multiplicity.cxx:32:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-multiplicity.cxx:34:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-multiplicity.cxx:35:5: warning: no header providing "TString" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-multiplicity.cxx:35:19: warning: no header providing "Form" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-multiplicity.cxx:36:57: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-multiplicity.cxx:41:31: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-multiplicity.cxx:41:64: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-multiplicity.cxx:41:74: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-multiplicity.cxx:48:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-qa-multiplicity.cxx:48:11: warning: no header providing "abs" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-multiplicity.cxx:48:42: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ALICE3/Tasks/alice3-qa-multiplicity.cxx:54:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `ALICE3/Tasks/alice3-qa-singleparticle.cxx` ```text ALICE3/Tasks/alice3-qa-singleparticle.cxx:32:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] ALICE3/Tasks/alice3-qa-singleparticle.cxx:33:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:34:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:36:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:54:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:70:57: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:82:11: warning: no header providing "TString" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:82:25: warning: no header providing "Form" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:83:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:102:42: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:106:50: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:109:25: warning: no header providing "TH1" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:216:39: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:217:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:217:49: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:217:68: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:217:92: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:218:35: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:225:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:229:18: warning: no header providing "TH2" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:297:90: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:382:49: warning: no header providing "std::find" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:423:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-qa-singleparticle.cxx:547:46: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] ``` #### `ALICE3/Tasks/alice3-taskcorrelationDDbar.cxx` ```text ALICE3/Tasks/alice3-taskcorrelationDDbar.cxx:35:28: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-taskcorrelationDDbar.cxx:43:10: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-taskcorrelationDDbar.cxx:43:74: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-taskcorrelationDDbar.cxx:55:7: warning: no header providing "TString" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-taskcorrelationDDbar.cxx:88:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-taskcorrelationDDbar.cxx:105:156: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-taskcorrelationDDbar.cxx:156:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-taskcorrelationDDbar.cxx:163:20: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-taskcorrelationDDbar.cxx:263:64: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3-taskcorrelationDDbar.cxx:281:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `ALICE3/Tasks/alice3DecayerQA.cxx` ```text ALICE3/Tasks/alice3DecayerQA.cxx:22:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3DecayerQA.cxx:24:1: warning: included header ConfigParamRegistry.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3DecayerQA.cxx:31:1: warning: included header map is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3DecayerQA.cxx:38:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3DecayerQA.cxx:39:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3DecayerQA.cxx:39:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3DecayerQA.cxx:41:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3DecayerQA.cxx:53:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3DecayerQA.cxx:55:44: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3DecayerQA.cxx:106:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `ALICE3/Tasks/alice3Efficiency.cxx` ```text ALICE3/Tasks/alice3Efficiency.cxx:25:1: warning: included header HistogramRegistry.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Efficiency.cxx:26:1: warning: included header ConfigParamRegistry.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Efficiency.cxx:36:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Efficiency.cxx:37:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Efficiency.cxx:38:21: warning: no header providing "std::pair" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Efficiency.cxx:39:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Efficiency.cxx:43:34: warning: no header providing "Form" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Efficiency.cxx:55:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Efficiency.cxx:55:31: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Efficiency.cxx:55:48: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Efficiency.cxx:56:21: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Efficiency.cxx:58:31: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Efficiency.cxx:61:50: warning: no header providing "o2::aod::McParticle" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Efficiency.cxx:93:31: warning: no header providing "std::find" is directly included [misc-include-cleaner] ``` #### `ALICE3/Tasks/alice3HfTask3Prong.cxx` ```text ALICE3/Tasks/alice3HfTask3Prong.cxx:17:1: warning: included header OTFPIDTrk.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3HfTask3Prong.cxx:18:1: warning: included header OTFRICH.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3HfTask3Prong.cxx:19:1: warning: included header OTFTOF.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3HfTask3Prong.cxx:20:1: warning: included header RICH.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3HfTask3Prong.cxx:26:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3HfTask3Prong.cxx:36:1: warning: included header OutputObjHeader.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3HfTask3Prong.cxx:41:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3HfTask3Prong.cxx:56:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ALICE3/Tasks/alice3HfTask3Prong.cxx:114:20: warning: no header providing "Form" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3HfTask3Prong.cxx:114:116: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/alice3HfTask3Prong.cxx:115:116: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/alice3HfTask3Prong.cxx:116:122: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/alice3HfTask3Prong.cxx:117:117: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/alice3HfTask3Prong.cxx:177:28: warning: no header providing "TH2" is directly included [misc-include-cleaner] ``` #### `ALICE3/Tasks/alice3Multicharm.cxx` ```text ALICE3/Tasks/alice3Multicharm.cxx:23:1: warning: included header A3DecayFinderTables.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:25:1: warning: included header OTFRICH.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:26:1: warning: included header OTFStrangeness.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:27:1: warning: included header OTFTOF.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:28:1: warning: included header tracksAlice3.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:29:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:30:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:31:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:32:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:33:1: warning: included header MlResponse.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:37:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:38:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:39:1: warning: included header MeanVertexObject.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:40:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:41:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:42:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:43:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:44:1: warning: included header PVertexer.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:45:1: warning: included header PVertexerHelpers.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:46:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:49:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:51:1: warning: included header Track.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:53:1: warning: included header array is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:56:1: warning: included header iterator is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:70:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ALICE3/Tasks/alice3Multicharm.cxx:71:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:71:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:76:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:77:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:79:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:81:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:84:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:90:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:101:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:133:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:135:102: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:158:39: warning: no header providing "TH1" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:183:35: warning: no header providing "TH2" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:183:72: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:194:24: warning: no header providing "kElectron" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:195:24: warning: no header providing "kMuonMinus" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:196:24: warning: no header providing "kPiPlus" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:197:24: warning: no header providing "kKPlus" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:198:24: warning: no header providing "kProton" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:199:24: warning: no header providing "kXiMinus" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:221:102: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:296:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Multicharm.cxx:565:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `ALICE3/Tasks/alice3PidEvaluation.cxx` ```text ALICE3/Tasks/alice3PidEvaluation.cxx:26:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:28:1: warning: included header NameConf.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:33:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:35:1: warning: included header DCA.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:37:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:38:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:40:1: warning: included header TVector3.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:52:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:56:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:81:32: warning: no header providing "TH1" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:86:19: warning: no header providing "TH2" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:94:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:109:26: warning: no header providing "std::log10" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:113:31: warning: no header providing "std::pow" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:115:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:120:56: warning: no header providing "Form" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:122:56: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:125:62: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:146:48: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:158:7: warning: uninitialized record type: 'combinedNSigma' [cppcoreguidelines-pro-type-member-init] ALICE3/Tasks/alice3PidEvaluation.cxx:185:41: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:221:36: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:265:32: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3PidEvaluation.cxx:278:7: warning: uninitialized record type: 'trackerNSigma' [cppcoreguidelines-pro-type-member-init] ALICE3/Tasks/alice3PidEvaluation.cxx:291:7: warning: uninitialized record type: 'tofInnerNSigma' [cppcoreguidelines-pro-type-member-init] ALICE3/Tasks/alice3PidEvaluation.cxx:304:7: warning: uninitialized record type: 'tofOuterNSigma' [cppcoreguidelines-pro-type-member-init] ALICE3/Tasks/alice3PidEvaluation.cxx:317:7: warning: uninitialized record type: 'richNSigma' [cppcoreguidelines-pro-type-member-init] ``` #### `ALICE3/Tasks/alice3SeparationPower.cxx` ```text ALICE3/Tasks/alice3SeparationPower.cxx:20:1: warning: included header OTFRICH.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3SeparationPower.cxx:26:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3SeparationPower.cxx:32:1: warning: included header map is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3SeparationPower.cxx:34:1: warning: included header utility is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3SeparationPower.cxx:40:6: warning: no header providing "std::array" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3SeparationPower.cxx:45:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3SeparationPower.cxx:46:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3SeparationPower.cxx:47:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3SeparationPower.cxx:48:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3SeparationPower.cxx:53:42: warning: no header providing "Form" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3SeparationPower.cxx:77:18: warning: no header providing "std::isnan" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3SeparationPower.cxx:84:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `ALICE3/Tasks/alice3Strangeness.cxx` ```text ALICE3/Tasks/alice3Strangeness.cxx:28:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:30:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:31:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:32:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:33:1: warning: included header PVertexer.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:34:1: warning: included header PVertexerHelpers.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:35:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:39:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:41:1: warning: included header DCA.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:42:1: warning: included header InteractionSampler.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:44:1: warning: included header TGenPhaseSpace.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:45:1: warning: included header TGeoGlobalMagField.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:46:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:47:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:49:1: warning: included header RtypesCore.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:62:8: warning: constructor does not initialize these fields: appliedSelectionCheckMask, selectionCheck, selectionCheckPos [cppcoreguidelines-pro-type-member-init] ALICE3/Tasks/alice3Strangeness.cxx:63:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:67:40: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:112:3: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:115:13: warning: member 'posDaugDCAselIDx' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] ALICE3/Tasks/alice3Strangeness.cxx:116:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:118:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:120:45: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:122:38: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:125:32: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:128:61: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:162:7: warning: no header providing "SETBIT" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:191:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:240:31: warning: no header providing "std::acos" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:267:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3Strangeness.cxx:303:15: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] ``` #### `ALICE3/Tasks/alice3TrackingPerformance.cxx` ```text ALICE3/Tasks/alice3TrackingPerformance.cxx:23:1: warning: included header ConfigParamRegistry.h is not used directly [misc-include-cleaner] ALICE3/Tasks/alice3TrackingPerformance.cxx:34:17: warning: no header providing "TH1" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3TrackingPerformance.cxx:38:31: warning: no header providing "TH2" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3TrackingPerformance.cxx:44:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3TrackingPerformance.cxx:45:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3TrackingPerformance.cxx:46:21: warning: no header providing "std::pair" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3TrackingPerformance.cxx:48:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3TrackingPerformance.cxx:50:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3TrackingPerformance.cxx:56:64: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3TrackingPerformance.cxx:58:25: warning: no header providing "Form" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3TrackingPerformance.cxx:66:77: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3TrackingPerformance.cxx:73:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3TrackingPerformance.cxx:73:31: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3TrackingPerformance.cxx:73:48: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3TrackingPerformance.cxx:74:21: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] ALICE3/Tasks/alice3TrackingPerformance.cxx:76:50: warning: no header providing "o2::aod::McParticle" is directly included [misc-include-cleaner] ``` #### `ALICE3/Tasks/pidFTOFqa.cxx` ```text ALICE3/Tasks/pidFTOFqa.cxx:13:1: warning: included header Track.h is not used directly [misc-include-cleaner] ALICE3/Tasks/pidFTOFqa.cxx:17:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] ALICE3/Tasks/pidFTOFqa.cxx:19:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] ALICE3/Tasks/pidFTOFqa.cxx:38:3: warning: no header providing "o2::framework::Builds" is directly included [misc-include-cleaner] ALICE3/Tasks/pidFTOFqa.cxx:39:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/Tasks/pidFTOFqa.cxx:45:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] ALICE3/Tasks/pidFTOFqa.cxx:45:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/Tasks/pidFTOFqa.cxx:46:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/Tasks/pidFTOFqa.cxx:66:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ALICE3/Tasks/pidFTOFqa.cxx:73:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] ALICE3/Tasks/pidFTOFqa.cxx:82:73: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] ALICE3/Tasks/pidFTOFqa.cxx:103:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] ALICE3/Tasks/pidFTOFqa.cxx:121:27: warning: no header providing "abs" is directly included [misc-include-cleaner] ``` #### `ALICE3/Tasks/pidRICHqa.cxx` ```text ALICE3/Tasks/pidRICHqa.cxx:30:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:33:15: warning: no header providing "o2::framework::VariantType" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:36:8: warning: no header providing "std::swap" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:46:1: warning: no header providing "DECLARE_SOA_INDEX_COLUMN" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:51:1: warning: no header providing "DECLARE_SOA_INDEX_TABLE_USER" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:51:47: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:56:3: warning: no header providing "o2::framework::Builds" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:58:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:65:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:65:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:66:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:88:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:110:13: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:113:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:119:66: warning: no header providing "Form" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:121:5: warning: no header providing "TString" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:126:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/pidRICHqa.cxx:126:57: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:127:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/pidRICHqa.cxx:128:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/pidRICHqa.cxx:130:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/pidRICHqa.cxx:131:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/pidRICHqa.cxx:132:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/pidRICHqa.cxx:134:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/pidRICHqa.cxx:135:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/pidRICHqa.cxx:136:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/pidRICHqa.cxx:156:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:167:14: warning: no header providing "TH1" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:167:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:184:47: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:193:38: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/pidRICHqa.cxx:194:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/pidRICHqa.cxx:195:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/pidRICHqa.cxx:196:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/pidRICHqa.cxx:198:38: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/pidRICHqa.cxx:199:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/pidRICHqa.cxx:200:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/pidRICHqa.cxx:201:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/pidRICHqa.cxx:202:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ALICE3/Tasks/pidRICHqa.cxx:244:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:244:66: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:246:69: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:249:27: warning: no header providing "o2::aod::McParticles_000" is directly included [misc-include-cleaner] ALICE3/Tasks/pidRICHqa.cxx:253:27: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] ``` #### `ALICE3/Utils/utilsHfAlice3.h` ```text ALICE3/Utils/utilsHfAlice3.h:41:9: warning: no header providing "LOG" is directly included [misc-include-cleaner] ALICE3/Utils/utilsHfAlice3.h:80:18: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] ALICE3/Utils/utilsHfAlice3.h:80:71: warning: no header providing "o2::constants::physics::MassLambdaCPlus" is directly included [misc-include-cleaner] ``` ### Common #### `Common/CCDB/EventSelectionParams.cxx` ```text Common/CCDB/EventSelectionParams.cxx:81:1: warning: constructor does not initialize these fields: selectionBarrel, selectionMuonWithPileupCuts, selectionMuonWithoutPileupCuts [cppcoreguidelines-pro-type-member-init] ``` #### `Common/CCDB/macros/ctpRateF.C` ```text Common/CCDB/macros/ctpRateF.C:24:50: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] Common/CCDB/macros/ctpRateF.C:24:90: warning: no header providing "std::string" is directly included [misc-include-cleaner] Common/CCDB/macros/ctpRateF.C:41:5: warning: no header providing "LOG" is directly included [misc-include-cleaner] Common/CCDB/macros/ctpRateF.C:41:40: warning: no header providing "std::endl" is directly included [misc-include-cleaner] Common/CCDB/macros/ctpRateF.C:47:21: warning: no header providing "std::log" is directly included [misc-include-cleaner] Common/CCDB/macros/ctpRateF.C:55:12: error: unknown type name 'string'; did you mean 'std::string'? [clang-diagnostic-error] Common/CCDB/macros/ctpRateF.C:55:20: error: unknown type name 'string'; did you mean 'std::string'? [clang-diagnostic-error] Common/CCDB/macros/ctpRateF.C:56:32: warning: no header providing "std::to_string" is directly included [misc-include-cleaner] Common/CCDB/macros/ctpRateF.C:67:12: error: unknown type name 'string'; did you mean 'std::string'? [clang-diagnostic-error] Common/CCDB/macros/ctpRateF.C:67:20: error: unknown type name 'string'; did you mean 'std::string'? [clang-diagnostic-error] Common/CCDB/macros/ctpRateF.C:78:12: error: unknown type name 'string'; did you mean 'std::string'? [clang-diagnostic-error] Common/CCDB/macros/ctpRateF.C:78:20: error: unknown type name 'string'; did you mean 'std::string'? [clang-diagnostic-error] Common/CCDB/macros/ctpRateF.C:106:8: warning: no header providing "size_t" is directly included [misc-include-cleaner] Common/CCDB/macros/ctpRateF.C:136:7: warning: no header providing "double_t" is directly included [misc-include-cleaner] Common/CCDB/macros/ctpRateF.C:155:8: warning: no header providing "std::cout" is directly included [misc-include-cleaner] ``` #### `Common/CCDB/macros/upload_event_selection_params.C` ```text Common/CCDB/macros/upload_event_selection_params.C:87:11: error: no member named 'DisableOutOfBunchPileupCuts' in 'EventSelectionParams'; did you mean 'disableOutOfBunchPileupCuts'? [clang-diagnostic-error] Common/CCDB/macros/upload_event_selection_params.C:94:11: error: no member named 'DisableOutOfBunchPileupCuts' in 'EventSelectionParams'; did you mean 'disableOutOfBunchPileupCuts'? [clang-diagnostic-error] Common/CCDB/macros/upload_event_selection_params.C:103:11: error: no member named 'SetOnVsOfParams' in 'EventSelectionParams'; did you mean 'setOnVsOfParams'? [clang-diagnostic-error] Common/CCDB/macros/upload_event_selection_params.C:108:11: error: no member named 'SetOnVsOfParams' in 'EventSelectionParams'; did you mean 'setOnVsOfParams'? [clang-diagnostic-error] Common/CCDB/macros/upload_event_selection_params.C:117:11: error: no member named 'SetOnVsOfParams' in 'EventSelectionParams'; did you mean 'setOnVsOfParams'? [clang-diagnostic-error] Common/CCDB/macros/upload_event_selection_params.C:124:11: error: no member named 'DisableOutOfBunchPileupCuts' in 'EventSelectionParams'; did you mean 'disableOutOfBunchPileupCuts'? [clang-diagnostic-error] Common/CCDB/macros/upload_event_selection_params.C:131:11: error: no member named 'SetOnVsOfParams' in 'EventSelectionParams'; did you mean 'setOnVsOfParams'? [clang-diagnostic-error] Common/CCDB/macros/upload_event_selection_params.C:138:11: error: no member named 'SetOnVsOfParams' in 'EventSelectionParams'; did you mean 'setOnVsOfParams'? [clang-diagnostic-error] Common/CCDB/macros/upload_event_selection_params.C:145:11: error: no member named 'SetOnVsOfParams' in 'EventSelectionParams'; did you mean 'setOnVsOfParams'? [clang-diagnostic-error] Common/CCDB/macros/upload_event_selection_params.C:152:11: error: no member named 'SetOnVsOfParams' in 'EventSelectionParams'; did you mean 'setOnVsOfParams'? [clang-diagnostic-error] Common/CCDB/macros/upload_event_selection_params.C:179:11: error: no member named 'SetOnVsOfParams' in 'EventSelectionParams'; did you mean 'setOnVsOfParams'? [clang-diagnostic-error] Common/CCDB/macros/upload_event_selection_params.C:204:11: error: no member named 'SetOnVsOfParams' in 'EventSelectionParams'; did you mean 'setOnVsOfParams'? [clang-diagnostic-error] Common/CCDB/macros/upload_event_selection_params.C:217:11: error: no member named 'SetOnVsOfParams' in 'EventSelectionParams'; did you mean 'setOnVsOfParams'? [clang-diagnostic-error] Common/CCDB/macros/upload_event_selection_params.C:224:11: error: no member named 'DisableOutOfBunchPileupCuts' in 'EventSelectionParams'; did you mean 'disableOutOfBunchPileupCuts'? [clang-diagnostic-error] Common/CCDB/macros/upload_event_selection_params.C:231:11: error: no member named 'SetOnVsOfParams' in 'EventSelectionParams'; did you mean 'setOnVsOfParams'? [clang-diagnostic-error] Common/CCDB/macros/upload_event_selection_params.C:244:5: warning: no header providing "printf" is directly included [misc-include-cleaner] Common/CCDB/macros/upload_event_selection_params.C:252:35: warning: format specifies type 'unsigned long long' but the argument has type 'long' [clang-diagnostic-format] Common/CCDB/macros/upload_event_selection_params.C:252:40: warning: format specifies type 'unsigned long long' but the argument has type 'long' [clang-diagnostic-format] Common/CCDB/macros/upload_event_selection_params.C:260:5: warning: no header providing "ULong64_t" is directly included [misc-include-cleaner] ``` #### `Common/CCDB/macros/upload_event_selection_params_run3.C` ```text Common/CCDB/macros/upload_event_selection_params_run3.C:52:5: warning: no header providing "LOGP" is directly included [misc-include-cleaner] Common/CCDB/macros/upload_event_selection_params_run3.C:53:5: warning: no header providing "ULong64_t" is directly included [misc-include-cleaner] Common/CCDB/macros/upload_event_selection_params_run3.C:66:21: warning: no header providing "atol" is directly included [misc-include-cleaner] ``` #### `Common/CCDB/macros/upload_trigger_aliases.C` ```text Common/CCDB/macros/upload_trigger_aliases.C:16:1: warning: included header TTree.h is not used directly [misc-include-cleaner] Common/CCDB/macros/upload_trigger_aliases.C:77:5: warning: no header providing "LOGP" is directly included [misc-include-cleaner] Common/CCDB/macros/upload_trigger_aliases.C:98:5: warning: no header providing "ULong64_t" is directly included [misc-include-cleaner] ``` #### `Common/CCDB/macros/upload_trigger_aliases_run3.C` ```text Common/CCDB/macros/upload_trigger_aliases_run3.C:17:1: warning: included header TTree.h is not used directly [misc-include-cleaner] Common/CCDB/macros/upload_trigger_aliases_run3.C:73:5: warning: no header providing "ULong64_t" is directly included [misc-include-cleaner] Common/CCDB/macros/upload_trigger_aliases_run3.C:81:5: warning: no header providing "LOGP" is directly included [misc-include-cleaner] ``` #### `Common/Core/FFitWeights.cxx` ```text Common/Core/FFitWeights.cxx:79:22: warning: no header providing "TH2D" is directly included [misc-include-cleaner] Common/Core/FFitWeights.cxx:84:20: warning: no header providing "TProfile" is directly included [misc-include-cleaner] Common/Core/FFitWeights.cxx:87:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Common/Core/FFitWeights.cxx:88:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Common/Core/FFitWeights.cxx:99:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Common/Core/FFitWeights.cxx:102:11: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Common/Core/FFitWeights.cxx:118:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Common/Core/FFitWeights.cxx:133:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Common/Core/FFitWeights.cxx:169:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Common/Core/FFitWeights.cxx:199:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `Common/Core/FFitWeights.h` ```text Common/Core/FFitWeights.h:40:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] ``` #### `Common/Core/MetadataHelper.cxx` ```text Common/Core/MetadataHelper.cxx:166:3: warning: no header providing "TString" is directly included [misc-include-cleaner] Common/Core/MetadataHelper.cxx:167:20: warning: no header providing "Form" is directly included [misc-include-cleaner] ``` #### `Common/Core/OrbitRange.h` ```text Common/Core/OrbitRange.h:32:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] ``` #### `Common/Core/PID/DetectorResponse.h` ```text Common/Core/PID/DetectorResponse.h:38:7: warning: constructor does not initialize these fields: mParam [cppcoreguidelines-pro-type-member-init] ``` #### `Common/Core/PID/PIDTOFParamService.cxx` ```text Common/Core/PID/PIDTOFParamService.cxx:31:15: warning: no header providing "o2::pid::tof::TOFResoParamsV3" is directly included [misc-include-cleaner] Common/Core/PID/PIDTOFParamService.cxx:32:19: warning: no header providing "o2::common::core::MetadataHelper" is directly included [misc-include-cleaner] Common/Core/PID/PIDTOFParamService.cxx:39:5: warning: no header providing "LOG" is directly included [misc-include-cleaner] Common/Core/PID/PIDTOFParamService.cxx:58:57: warning: no header providing "o2::ccdb::BasicCCDBManager" is directly included [misc-include-cleaner] Common/Core/PID/PIDTOFParamService.cxx:75:42: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] Common/Core/PID/PIDTOFParamService.cxx:75:69: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] Common/Core/PID/PIDTOFParamService.cxx:75:96: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] Common/Core/PID/PIDTOFParamService.cxx:93:14: warning: no header providing "o2::tof::ParameterCollection" is directly included [misc-include-cleaner] Common/Core/PID/PIDTOFParamService.cxx:170:60: warning: no header providing "TGraph" is directly included [misc-include-cleaner] Common/Core/PID/PIDTOFParamService.cxx:187:77: warning: no header providing "int64_t" is directly included [misc-include-cleaner] Common/Core/PID/PIDTOFParamService.cxx:199:45: warning: no header providing "o2::common::core::CollisionSystemType" is directly included [misc-include-cleaner] Common/Core/PID/PIDTOFParamService.cxx:200:21: warning: no header providing "o2::parameters::GRPLHCIFData" is directly included [misc-include-cleaner] Common/Core/PID/PIDTOFParamService.cxx:202:24: warning: no header providing "CollisionSystemType" is directly included [misc-include-cleaner] Common/Core/PID/PIDTOFParamService.cxx:216:9: warning: no header providing "LOGF" is directly included [misc-include-cleaner] Common/Core/PID/PIDTOFParamService.cxx:272:8: warning: destructor of 'TOFSupport' is public and non-virtual [cppcoreguidelines-virtual-class-destructor] Common/Core/PID/PIDTOFParamService.cxx:281:30: warning: no header providing "o2::framework::TypeIdHelpers" is directly included [misc-include-cleaner] Common/Core/PID/PIDTOFParamService.cxx:285:22: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `Common/Core/PID/PIDTOFParamService.h` ```text Common/Core/PID/PIDTOFParamService.h:29:1: warning: included header ParameterContainers.h is not used directly [misc-include-cleaner] Common/Core/PID/PIDTOFParamService.h:30:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] Common/Core/PID/PIDTOFParamService.h:50:67: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Common/Core/PID/PIDTOFParamService.h:66:48: warning: no header providing "int64_t" is directly included [misc-include-cleaner] Common/Core/PID/PIDTOFParamService.h:85:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] Common/Core/PID/PIDTOFParamService.h:102:19: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ``` #### `Common/Core/PID/ParamBase.cxx` ```text Common/Core/PID/ParamBase.cxx:56:15: warning: variable 'p' is not initialized [cppcoreguidelines-init-variables] Common/Core/PID/ParamBase.cxx:82:20: warning: variable 'p' is not initialized [cppcoreguidelines-init-variables] ``` #### `Common/Core/PID/ParamBase.h` ```text Common/Core/PID/ParamBase.h:177:26: warning: variable 'p' is not initialized [cppcoreguidelines-init-variables] ``` #### `Common/Core/RecoDecay.h` ```text Common/Core/RecoDecay.h:896:5: warning: uninitialized record type: 'arrPdgDaughters' [cppcoreguidelines-pro-type-member-init] ``` #### `Common/Core/TPCVDriftManager.h` ```text Common/Core/TPCVDriftManager.h:88:11: warning: variable 'tTB' is not initialized [cppcoreguidelines-init-variables] Common/Core/TPCVDriftManager.h:88:16: warning: variable 'tTBErr' is not initialized [cppcoreguidelines-init-variables] Common/Core/TPCVDriftManager.h:92:7: warning: uninitialized record type: 'enc' [cppcoreguidelines-pro-type-member-init] Common/Core/TPCVDriftManager.h:93:20: warning: do not access members of unions; consider using (boost::)variant instead [cppcoreguidelines-pro-type-union-access] ``` #### `Common/Core/TableHelper.h` ```text Common/Core/TableHelper.h:124:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] Common/Core/TableHelper.h:125:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] Common/Core/TableHelper.h:126:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] Common/Core/TableHelper.h:127:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] ``` #### `Common/Core/Zorro.cxx` ```text Common/Core/Zorro.cxx:36:1: warning: included header map is not used directly [misc-include-cleaner] ``` #### `Common/Core/ZorroSummary.h` ```text Common/Core/ZorroSummary.h:41:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `Common/Core/fwdtrackUtilities.h` ```text Common/Core/fwdtrackUtilities.h:21:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] Common/Core/fwdtrackUtilities.h:22:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] Common/Core/fwdtrackUtilities.h:31:1: warning: included header TGeoGlobalMagField.h is not used directly [misc-include-cleaner] Common/Core/fwdtrackUtilities.h:59:51: warning: no header providing "o2::aod::fwdtrack::ForwardTrackTypeEnum" is directly included [misc-include-cleaner] Common/Core/fwdtrackUtilities.h:139:93: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] Common/Core/fwdtrackUtilities.h:177:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] ``` #### `Common/Core/macros/testCollisionTypeHelper.C` ```text Common/Core/macros/testCollisionTypeHelper.C:29:7: warning: Value stored to 'collsys' during its initialization is never read [clang-analyzer-deadcode.DeadStores] Common/Core/macros/testCollisionTypeHelper.C:29:7: warning: unused variable 'collsys' [clang-diagnostic-unused-variable] ``` #### `Common/Core/macros/testMetadataHelper.C` ```text Common/Core/macros/testMetadataHelper.C:37:86: warning: no header providing "o2::framework::ConfigParamSpec" is directly included [misc-include-cleaner] Common/Core/macros/testMetadataHelper.C:40:12: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] Common/Core/macros/testMetadataHelper.C:51:7: warning: no header providing "LOGP" is directly included [misc-include-cleaner] Common/Core/macros/testMetadataHelper.C:54:22: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] Common/Core/macros/testMetadataHelper.C:57:25: warning: no header providing "strdup" is directly included [misc-include-cleaner] Common/Core/macros/testMetadataHelper.C:58:74: warning: no header providing "o2::framework::VariantType" is directly included [misc-include-cleaner] Common/Core/macros/testMetadataHelper.C:69:5: warning: no header providing "LOG" is directly included [misc-include-cleaner] Common/Core/macros/testMetadataHelper.C:73:8: warning: no header providing "std::ifstream" is directly included [misc-include-cleaner] Common/Core/macros/testMetadataHelper.C:92:23: warning: no header providing "Form" is directly included [misc-include-cleaner] Common/Core/macros/testMetadataHelper.C:103:20: warning: comparison of integers of different signs: 'size_type' (aka 'unsigned long') and 'int' [clang-diagnostic-sign-compare] Common/Core/macros/testMetadataHelper.C:123:50: error: unknown type name 'string'; did you mean 'boost_swap_impl::string'? [clang-diagnostic-error] Common/Core/macros/testMetadataHelper.C:124:70: error: expected ')' [clang-diagnostic-error] Common/Core/macros/testMetadataHelper.C:128:12: error: use of undeclared identifier 'ccdbUrl' [clang-diagnostic-error] Common/Core/macros/testMetadataHelper.C:130:35: error: use of undeclared identifier 'ccdbUrl' [clang-diagnostic-error] Common/Core/macros/testMetadataHelper.C:165:46: warning: no header providing "o2::framework::ParamRetriever" is directly included [misc-include-cleaner] ``` #### `Common/DataModel/EventSelection.h` ```text Common/DataModel/EventSelection.h:20:1: warning: included header EventSelectionParams.h is not used directly [misc-include-cleaner] Common/DataModel/EventSelection.h:21:1: warning: included header RCTSelectionFlags.h is not used directly [misc-include-cleaner] Common/DataModel/EventSelection.h:22:1: warning: included header TriggerAliases.h is not used directly [misc-include-cleaner] ``` #### `Common/DataModel/PIDResponseTOF.h` ```text Common/DataModel/PIDResponseTOF.h:433:35: warning: casting (double + 0.5) to integer leads to incorrect rounding; consider using lround (#include ) instead [bugprone-incorrect-roundings] ``` #### `Common/DataModel/PIDResponseTPC.h` ```text Common/DataModel/PIDResponseTPC.h:296:35: warning: casting (double + 0.5) to integer leads to incorrect rounding; consider using lround (#include ) instead [bugprone-incorrect-roundings] ``` #### `Common/DataModel/ZDCLightIons.h` ```text Common/DataModel/ZDCLightIons.h:19:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] Common/DataModel/ZDCLightIons.h:21:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Common/DataModel/ZDCLightIons.h:59:42: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] Common/DataModel/ZDCLightIons.h:60:50: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] ``` #### `Common/TableProducer/PID/pidBayes.cxx` ```text Common/TableProducer/PID/pidBayes.cxx:74:8: warning: constructor does not initialize these fields: ccdb, Probability [cppcoreguidelines-pro-type-member-init] Common/TableProducer/PID/pidBayes.cxx:591:25: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ``` #### `Common/TableProducer/PID/pidITS.cxx` ```text Common/TableProducer/PID/pidITS.cxx:62:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/PID/pidTOF.cxx` ```text Common/TableProducer/PID/pidTOF.cxx:61:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/PID/pidTOFBase.cxx` ```text Common/TableProducer/PID/pidTOFBase.cxx:187:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] Common/TableProducer/PID/pidTOFBase.cxx:472:9: warning: Value stored to 'weight' is never read [clang-analyzer-deadcode.DeadStores] ``` #### `Common/TableProducer/PID/pidTOFFull.cxx` ```text Common/TableProducer/PID/pidTOFFull.cxx:61:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/PID/pidTOFMerge.cxx` ```text Common/TableProducer/PID/pidTOFMerge.cxx:31:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] Common/TableProducer/PID/pidTOFMerge.cxx:32:1: warning: included header ParameterContainers.h is not used directly [misc-include-cleaner] Common/TableProducer/PID/pidTOFMerge.cxx:49:1: warning: included header TGraph.h is not used directly [misc-include-cleaner] Common/TableProducer/PID/pidTOFMerge.cxx:54:1: warning: included header chrono is not used directly [misc-include-cleaner] Common/TableProducer/PID/pidTOFMerge.cxx:58:1: warning: included header map is not used directly [misc-include-cleaner] Common/TableProducer/PID/pidTOFMerge.cxx:90:8: warning: constructor does not initialize these fields: ccdb, tofResponse [cppcoreguidelines-pro-type-member-init] Common/TableProducer/PID/pidTOFMerge.cxx:246:8: warning: constructor does not initialize these fields: ccdb, tofResponse [cppcoreguidelines-pro-type-member-init] Common/TableProducer/PID/pidTOFMerge.cxx:443:11: warning: Value stored to 'weight' is never read [clang-analyzer-deadcode.DeadStores] Common/TableProducer/PID/pidTOFMerge.cxx:580:8: warning: constructor does not initialize these fields: tofResponse, ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/PID/pidTOFbeta.cxx` ```text Common/TableProducer/PID/pidTOFbeta.cxx:53:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/PID/pidTPC.cxx` ```text Common/TableProducer/PID/pidTPC.cxx:74:8: warning: constructor does not initialize these fields: response, ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/PID/pidTPCBase.cxx` ```text Common/TableProducer/PID/pidTPCBase.cxx:88:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] Common/TableProducer/PID/pidTPCBase.cxx:118:14: warning: variable 'hadronicRate' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/PID/pidTPCBase.cxx:119:11: warning: variable 'multTPC' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/PID/pidTPCBase.cxx:120:11: warning: variable 'occupancy' is not initialized [cppcoreguidelines-init-variables] ``` #### `Common/TableProducer/PID/pidTPCService.cxx` ```text Common/TableProducer/PID/pidTPCService.cxx:45:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/PID/pidTPCServiceRun2.cxx` ```text Common/TableProducer/PID/pidTPCServiceRun2.cxx:45:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/caloClusterProducer.cxx` ```text Common/TableProducer/caloClusterProducer.cxx:60:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] Common/TableProducer/caloClusterProducer.cxx:309:15: warning: variable 'posX' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/caloClusterProducer.cxx:309:21: warning: variable 'posZ' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/caloClusterProducer.cxx:625:15: warning: variable 'posX' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/caloClusterProducer.cxx:625:21: warning: variable 'posZ' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/caloClusterProducer.cxx:972:15: warning: variable 'module' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/caloClusterProducer.cxx:973:13: warning: variable 'trackX' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/caloClusterProducer.cxx:973:21: warning: variable 'trackZ' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/caloClusterProducer.cxx:1028:15: warning: variable 'posX' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/caloClusterProducer.cxx:1028:21: warning: variable 'posZ' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/caloClusterProducer.cxx:1120:11: warning: Value stored to 'trackdist' is never read [clang-analyzer-deadcode.DeadStores] Common/TableProducer/caloClusterProducer.cxx:1403:15: warning: variable 'module' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/caloClusterProducer.cxx:1404:13: warning: variable 'trackX' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/caloClusterProducer.cxx:1404:21: warning: variable 'trackZ' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/caloClusterProducer.cxx:1458:15: warning: variable 'posX' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/caloClusterProducer.cxx:1458:21: warning: variable 'posZ' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/caloClusterProducer.cxx:1548:11: warning: Value stored to 'trackdist' is never read [clang-analyzer-deadcode.DeadStores] ``` #### `Common/TableProducer/centralityTable.cxx` ```text Common/TableProducer/centralityTable.cxx:88:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, isTableEnabled [cppcoreguidelines-pro-type-member-init] Common/TableProducer/centralityTable.cxx:308:20: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Common/TableProducer/centralityTable.cxx:312:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Common/TableProducer/centralityTable.cxx:431:15: warning: variable 'v0m' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/centralityTable.cxx:587:40: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Common/TableProducer/centralityTable.cxx:588:34: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `Common/TableProducer/eseTableProducer.cxx` ```text Common/TableProducer/eseTableProducer.cxx:19:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] Common/TableProducer/eseTableProducer.cxx:40:1: warning: included header TMath.h is not used directly [misc-include-cleaner] Common/TableProducer/eseTableProducer.cxx:56:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] Common/TableProducer/eseTableProducer.cxx:110:5: warning: no header providing "TH1D" is directly included [misc-include-cleaner] Common/TableProducer/eseTableProducer.cxx:224:41: warning: no header providing "Form" is directly included [misc-include-cleaner] Common/TableProducer/eseTableProducer.cxx:298:15: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] Common/TableProducer/eseTableProducer.cxx:456:31: warning: no header providing "kTVXinTRD" is directly included [misc-include-cleaner] Common/TableProducer/eseTableProducer.cxx:461:52: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] Common/TableProducer/eseTableProducer.cxx:466:52: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] Common/TableProducer/eseTableProducer.cxx:471:52: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] Common/TableProducer/eseTableProducer.cxx:477:52: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] Common/TableProducer/eseTableProducer.cxx:483:52: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] ``` #### `Common/TableProducer/eventSelectionService.cxx` ```text Common/TableProducer/eventSelectionService.cxx:53:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] Common/TableProducer/eventSelectionService.cxx:112:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/eventSelectionServiceRun2.cxx` ```text Common/TableProducer/eventSelectionServiceRun2.cxx:39:1: warning: included header stdexcept is not used directly [misc-include-cleaner] Common/TableProducer/eventSelectionServiceRun2.cxx:53:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/ft0CorrectedTable.cxx` ```text Common/TableProducer/ft0CorrectedTable.cxx:41:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/match-mft-ft0.cxx` ```text Common/TableProducer/match-mft-ft0.cxx:238:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] Common/TableProducer/match-mft-ft0.cxx:305:10: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Common/TableProducer/match-mft-ft0.cxx:305:30: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Common/TableProducer/match-mft-ft0.cxx:332:12: warning: variable 'minD' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/match-mft-ft0.cxx:333:12: warning: variable 'globalMinD' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/match-mft-ft0.cxx:387:9: warning: Value stored to 'D' is never read [clang-analyzer-deadcode.DeadStores] ``` #### `Common/TableProducer/match-mft-mch-data-mc.cxx` ```text Common/TableProducer/match-mft-mch-data-mc.cxx:87:8: warning: constructor does not initialize these fields: ccdbManager, fieldB [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/match-mft-mch-data.cxx` ```text Common/TableProducer/match-mft-mch-data.cxx:87:8: warning: constructor does not initialize these fields: ccdbManager, fieldB [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/mcCollsExtra.cxx` ```text Common/TableProducer/mcCollsExtra.cxx:37:12: warning: using decl 'array' is unused [misc-unused-using-decls] ``` #### `Common/TableProducer/mftmchMatchingML.cxx` ```text Common/TableProducer/mftmchMatchingML.cxx:54:18: warning: using decl 'TrackParCovFwd' is unused [misc-unused-using-decls] Common/TableProducer/mftmchMatchingML.cxx:55:18: warning: using decl 'TrackParFwd' is unused [misc-unused-using-decls] ``` #### `Common/TableProducer/multCentTable.cxx` ```text Common/TableProducer/multCentTable.cxx:48:8: warning: constructor does not initialize these fields: ccdb, pdg [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/multiplicityExtraTable.cxx` ```text Common/TableProducer/multiplicityExtraTable.cxx:42:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/multiplicityTable.cxx` ```text Common/TableProducer/multiplicityTable.cxx:102:8: warning: constructor does not initialize these fields: ccdb, pdg, mRunNumber, lCalibLoaded, lCalibObjects, hVtxZFV0A, hVtxZFT0A, hVtxZFT0C, hVtxZFDDA, hVtxZFDDC, hVtxZNTracks [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/muonRealignment.cxx` ```text Common/TableProducer/muonRealignment.cxx:80:8: warning: constructor does not initialize these fields: fCurrentRun, mImproveCutChi2, ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/occupancyTableProducer.cxx` ```text Common/TableProducer/occupancyTableProducer.cxx:77:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] Common/TableProducer/occupancyTableProducer.cxx:333:14: warning: variable 'median' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/occupancyTableProducer.cxx:805:61: warning: both sides of operator are equivalent [misc-redundant-expression] Common/TableProducer/occupancyTableProducer.cxx:1230:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] Common/TableProducer/occupancyTableProducer.cxx:1639:9: warning: variable 'binStart' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/occupancyTableProducer.cxx:1639:19: warning: variable 'binEnd' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/occupancyTableProducer.cxx:1657:9: warning: variable 'binStart' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/occupancyTableProducer.cxx:1657:19: warning: variable 'binEnd' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/occupancyTableProducer.cxx:1659:11: warning: variable 'm' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/occupancyTableProducer.cxx:1660:11: warning: variable 'c' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/occupancyTableProducer.cxx:1661:11: warning: variable 'x1' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/occupancyTableProducer.cxx:1661:15: warning: variable 'x2' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/occupancyTableProducer.cxx:1823:14: warning: variable 'zBegin' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/occupancyTableProducer.cxx:1824:14: warning: variable 'zEnd' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/occupancyTableProducer.cxx:1827:14: warning: variable 'dTbegin' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/occupancyTableProducer.cxx:1828:14: warning: variable 'dTend' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/occupancyTableProducer.cxx:1830:14: warning: variable 'bcBegin' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/occupancyTableProducer.cxx:1831:14: warning: variable 'bcEnd' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/occupancyTableProducer.cxx:1833:11: warning: variable 'binBCbegin' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/occupancyTableProducer.cxx:1834:11: warning: variable 'binBCend' is not initialized [cppcoreguidelines-init-variables] ``` #### `Common/TableProducer/propagationService.cxx` ```text Common/TableProducer/propagationService.cxx:28:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationService.cxx:29:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationService.cxx:35:1: warning: included header CcdbApi.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationService.cxx:36:1: warning: included header GeomConstants.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationService.cxx:37:1: warning: included header NameConf.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationService.cxx:38:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationService.cxx:39:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationService.cxx:40:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationService.cxx:44:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationService.cxx:46:1: warning: included header DCA.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationService.cxx:57:92: warning: no header providing "o2::aod::pidTPCFullEl" is directly included [misc-include-cleaner] Common/TableProducer/propagationService.cxx:57:111: warning: no header providing "o2::aod::pidTPCFullPi" is directly included [misc-include-cleaner] Common/TableProducer/propagationService.cxx:57:130: warning: no header providing "o2::aod::pidTPCFullPr" is directly included [misc-include-cleaner] Common/TableProducer/propagationService.cxx:57:149: warning: no header providing "o2::aod::pidTPCFullKa" is directly included [misc-include-cleaner] Common/TableProducer/propagationService.cxx:57:168: warning: no header providing "o2::aod::pidTPCFullHe" is directly included [misc-include-cleaner] Common/TableProducer/propagationService.cxx:68:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] Common/TableProducer/propagationService.cxx:70:18: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Common/TableProducer/propagationService.cxx:71:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] Common/TableProducer/propagationService.cxx:96:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Common/TableProducer/propagationService.cxx:108:56: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] Common/TableProducer/propagationService.cxx:112:80: warning: no header providing "TObject" is directly included [misc-include-cleaner] Common/TableProducer/propagationService.cxx:136:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `Common/TableProducer/propagationServiceRun2.cxx` ```text Common/TableProducer/propagationServiceRun2.cxx:28:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:29:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:31:1: warning: included header TrackPropagationModule.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:32:1: warning: included header TrackTuner.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:35:1: warning: included header CcdbApi.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:36:1: warning: included header GeomConstants.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:37:1: warning: included header NameConf.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:38:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:39:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:40:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:44:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:46:1: warning: included header DCA.h is not used directly [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:57:92: warning: no header providing "o2::aod::pidTPCFullEl" is directly included [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:57:111: warning: no header providing "o2::aod::pidTPCFullPi" is directly included [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:57:130: warning: no header providing "o2::aod::pidTPCFullPr" is directly included [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:57:149: warning: no header providing "o2::aod::pidTPCFullKa" is directly included [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:57:168: warning: no header providing "o2::aod::pidTPCFullHe" is directly included [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:68:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] Common/TableProducer/propagationServiceRun2.cxx:70:18: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:71:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:88:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:100:56: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:103:80: warning: no header providing "TObject" is directly included [misc-include-cleaner] Common/TableProducer/propagationServiceRun2.cxx:124:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `Common/TableProducer/qVectorsTable.cxx` ```text Common/TableProducer/qVectorsTable.cxx:65:8: warning: constructor does not initialize these fields: ccdb, fv0geom, cent [cppcoreguidelines-pro-type-member-init] Common/TableProducer/qVectorsTable.cxx:161:15: warning: no header providing "TProfile3D" is directly included [misc-include-cleaner] Common/TableProducer/qVectorsTable.cxx:663:36: warning: no header providing "TMath::ATan2" is directly included [misc-include-cleaner] Common/TableProducer/qVectorsTable.cxx:687:81: warning: no header providing "TMath::Cos" is directly included [misc-include-cleaner] Common/TableProducer/qVectorsTable.cxx:687:161: warning: no header providing "TMath::Sin" is directly included [misc-include-cleaner] ``` #### `Common/TableProducer/timestamp.cxx` ```text Common/TableProducer/timestamp.cxx:45:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/trackDcaCovFillerRun2.cxx` ```text Common/TableProducer/trackDcaCovFillerRun2.cxx:51:8: warning: constructor does not initialize these fields: ccdb, mDcaInfo [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/trackPropagation.cxx` ```text Common/TableProducer/trackPropagation.cxx:63:8: warning: constructor does not initialize these fields: ccdb, mDcaInfo [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/trackextension.cxx` ```text Common/TableProducer/trackextension.cxx:58:8: warning: constructor does not initialize these fields: ccdb, lut, mRunNumber, mMagField [cppcoreguidelines-pro-type-member-init] Common/TableProducer/trackextension.cxx:142:11: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] ``` #### `Common/TableProducer/zdcExtraTableProducer.cxx` ```text Common/TableProducer/zdcExtraTableProducer.cxx:120:10: warning: variable 'selected' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/zdcExtraTableProducer.cxx:263:31: warning: no header providing "std::pow" is directly included [misc-include-cleaner] ``` #### `Common/TableProducer/zdcTaskLightIons.cxx` ```text Common/TableProducer/zdcTaskLightIons.cxx:17:1: warning: included header TriggerAliases.h is not used directly [misc-include-cleaner] Common/TableProducer/zdcTaskLightIons.cxx:18:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] Common/TableProducer/zdcTaskLightIons.cxx:19:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] Common/TableProducer/zdcTaskLightIons.cxx:22:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] Common/TableProducer/zdcTaskLightIons.cxx:43:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] Common/TableProducer/zdcTaskLightIons.cxx:46:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Common/TableProducer/zdcTaskLightIons.cxx:62:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Common/TableProducer/zdcTaskLightIons.cxx:77:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Common/TableProducer/zdcTaskLightIons.cxx:79:84: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Common/TableProducer/zdcTaskLightIons.cxx:83:20: warning: no header providing "TH1" is directly included [misc-include-cleaner] Common/TableProducer/zdcTaskLightIons.cxx:96:3: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] Common/TableProducer/zdcTaskLightIons.cxx:99:10: warning: variable 'selected' is not initialized [cppcoreguidelines-init-variables] Common/TableProducer/zdcTaskLightIons.cxx:231:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `Common/Tasks/centralityStudy.cxx` ```text Common/Tasks/centralityStudy.cxx:51:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, startOfRunTimestamp, hCalibObjects, hVtxZFV0A, hVtxZFT0A, hVtxZFT0C, hVtxZNTracks, hVtxZNGlobals, hVtxZMFT, hVtxZFDDA, hVtxZFDDC [cppcoreguidelines-pro-type-member-init] ``` #### `Common/Tasks/integrationTestCCDB.cxx` ```text Common/Tasks/integrationTestCCDB.cxx:49:8: warning: constructor does not initialize these fields: ccdb, lut, mRunNumber [cppcoreguidelines-pro-type-member-init] ``` #### `Common/Tasks/multiplicityQa.cxx` ```text Common/Tasks/multiplicityQa.cxx:49:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] ``` #### `Common/Tasks/propagatorQa.cxx` ```text Common/Tasks/propagatorQa.cxx:51:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz, matCorr [cppcoreguidelines-pro-type-member-init] Common/Tasks/propagatorQa.cxx:224:5: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] Common/Tasks/propagatorQa.cxx:238:7: warning: uninitialized record type: 'pos' [cppcoreguidelines-pro-type-member-init] Common/Tasks/propagatorQa.cxx:253:13: warning: variable 'sna' is not initialized [cppcoreguidelines-init-variables] Common/Tasks/propagatorQa.cxx:253:18: warning: variable 'csa' is not initialized [cppcoreguidelines-init-variables] Common/Tasks/propagatorQa.cxx:344:5: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] Common/Tasks/propagatorQa.cxx:353:7: warning: uninitialized record type: 'pos' [cppcoreguidelines-pro-type-member-init] Common/Tasks/propagatorQa.cxx:368:13: warning: variable 'sna' is not initialized [cppcoreguidelines-init-variables] Common/Tasks/propagatorQa.cxx:368:18: warning: variable 'csa' is not initialized [cppcoreguidelines-init-variables] Common/Tasks/propagatorQa.cxx:460:5: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] ``` #### `Common/Tasks/qVectorsCorrection.cxx` ```text Common/Tasks/qVectorsCorrection.cxx:55:8: warning: constructor does not initialize these fields: DetId, RefAId, RefBId [cppcoreguidelines-pro-type-member-init] Common/Tasks/qVectorsCorrection.cxx:279:96: warning: no header providing "TMath::Sin" is directly included [misc-include-cleaner] Common/Tasks/qVectorsCorrection.cxx:279:144: warning: no header providing "TMath::ATan2" is directly included [misc-include-cleaner] Common/Tasks/qVectorsCorrection.cxx:280:96: warning: no header providing "TMath::Cos" is directly included [misc-include-cleaner] ``` #### `Common/Tasks/qaMuon.cxx` ```text Common/Tasks/qaMuon.cxx:177:8: warning: constructor does not initialize these fields: fCurrentRun, mImproveCutChi2, ccdb, Bz [cppcoreguidelines-pro-type-member-init] Common/Tasks/qaMuon.cxx:2972:14: warning: variable 'dcaXPair' is not initialized [cppcoreguidelines-init-variables] Common/Tasks/qaMuon.cxx:2973:14: warning: variable 'dcaYPair' is not initialized [cppcoreguidelines-init-variables] ``` #### `Common/Tasks/zdcTableReader.cxx` ```text Common/Tasks/zdcTableReader.cxx:23:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] Common/Tasks/zdcTableReader.cxx:24:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] Common/Tasks/zdcTableReader.cxx:34:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Common/Tasks/zdcTableReader.cxx:50:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Common/Tasks/zdcTableReader.cxx:52:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Common/Tasks/zdcTableReader.cxx:54:64: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Common/Tasks/zdcTableReader.cxx:136:22: warning: no header providing "TH1" is directly included [misc-include-cleaner] Common/Tasks/zdcTableReader.cxx:142:22: warning: no header providing "TH2" is directly included [misc-include-cleaner] ``` #### `Common/Tools/EventSelectionModule.h` ```text Common/Tools/EventSelectionModule.h:1286:37: warning: folding type 'float' into type 'int' might result in loss of precision [bugprone-fold-init-type] Common/Tools/EventSelectionModule.h:1286:42: warning: no header providing "std::accumulate" is directly included [misc-include-cleaner] ``` #### `Common/Tools/Multiplicity/MultModule.h` ```text Common/Tools/Multiplicity/MultModule.h:1056:20: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Common/Tools/Multiplicity/MultModule.h:1060:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Common/Tools/Multiplicity/MultModule.h:1208:38: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Common/Tools/Multiplicity/MultModule.h:1209:32: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Common/Tools/Multiplicity/MultModule.h:1390:19: warning: variable 'v0m' is not initialized [cppcoreguidelines-init-variables] ``` #### `Common/Tools/Multiplicity/macros/runCalibration.C` ```text Common/Tools/Multiplicity/macros/runCalibration.C:16:1: warning: included header iostream is not used directly [misc-include-cleaner] Common/Tools/Multiplicity/macros/runCalibration.C:23:21: error: unknown type name 'TString' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runCalibration.C:23:29: error: cannot initialize a parameter of type 'int' with an lvalue of type 'const char[58]' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runCalibration.C:25:3: error: unknown type name 'TFile' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runCalibration.C:25:21: error: unknown type name 'TFile' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runCalibration.C:28:3: error: unknown type name 'TH1F' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runCalibration.C:28:18: error: use of undeclared identifier 'TH1F' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runCalibration.C:28:23: error: expected expression [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runCalibration.C:29:3: error: unknown type name 'TH1F' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runCalibration.C:29:31: error: use of undeclared identifier 'TH1F' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runCalibration.C:29:36: error: expected expression [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runCalibration.C:30:3: error: unknown type name 'TH1F' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runCalibration.C:30:29: error: use of undeclared identifier 'TH1F' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runCalibration.C:30:34: error: expected expression [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runCalibration.C:32:3: error: unknown type name 'TH1F' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runCalibration.C:32:22: error: use of undeclared identifier 'TH1F' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runCalibration.C:32:27: error: expected expression [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runCalibration.C:33:3: error: unknown type name 'TH1F' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runCalibration.C:33:17: error: use of undeclared identifier 'TH1F' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runCalibration.C:33:22: error: expected expression [clang-diagnostic-error] ``` #### `Common/Tools/Multiplicity/macros/runGlauberFit.C` ```text Common/Tools/Multiplicity/macros/runGlauberFit.C:16:1: warning: included header multCalibrator.h is not used directly [misc-include-cleaner] Common/Tools/Multiplicity/macros/runGlauberFit.C:24:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] Common/Tools/Multiplicity/macros/runGlauberFit.C:25:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] Common/Tools/Multiplicity/macros/runGlauberFit.C:27:1: warning: included header TLegend.h is not used directly [misc-include-cleaner] Common/Tools/Multiplicity/macros/runGlauberFit.C:29:1: warning: included header TStopwatch.h is not used directly [misc-include-cleaner] Common/Tools/Multiplicity/macros/runGlauberFit.C:31:1: warning: included header TSystem.h is not used directly [misc-include-cleaner] Common/Tools/Multiplicity/macros/runGlauberFit.C:37:1: warning: no header providing "Double_t" is directly included [misc-include-cleaner] Common/Tools/Multiplicity/macros/runGlauberFit.C:37:57: warning: no header providing "Int_t" is directly included [misc-include-cleaner] Common/Tools/Multiplicity/macros/runGlauberFit.C:41:14: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] Common/Tools/Multiplicity/macros/runGlauberFit.C:41:21: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] Common/Tools/Multiplicity/macros/runGlauberFit.C:61:9: warning: no header providing "Long_t" is directly included [misc-include-cleaner] Common/Tools/Multiplicity/macros/runGlauberFit.C:90:19: warning: no header providing "TString" is directly included [misc-include-cleaner] Common/Tools/Multiplicity/macros/runGlauberFit.C:90:134: warning: no header providing "Bool_t" is directly included [misc-include-cleaner] Common/Tools/Multiplicity/macros/runGlauberFit.C:90:150: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] Common/Tools/Multiplicity/macros/runGlauberFit.C:90:213: warning: no header providing "Float_t" is directly included [misc-include-cleaner] Common/Tools/Multiplicity/macros/runGlauberFit.C:95:3: error: use of undeclared identifier 'cout'; did you mean 'std::cout'? [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runGlauberFit.C:95:26: error: use of undeclared identifier 'endl'; did you mean 'std::endl'? [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runGlauberFit.C:98:5: error: use of undeclared identifier 'cout'; did you mean 'std::cout'? [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runGlauberFit.C:98:37: error: use of undeclared identifier 'endl'; did you mean 'std::endl'? [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runGlauberFit.C:101:14: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] Common/Tools/Multiplicity/macros/runGlauberFit.C:101:31: warning: no header providing "Form" is directly included [misc-include-cleaner] Common/Tools/Multiplicity/macros/runGlauberFit.C:104:3: error: use of undeclared identifier 'cout'; did you mean 'std::cout'? [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runGlauberFit.C:104:101: error: use of undeclared identifier 'endl'; did you mean 'std::endl'? [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runGlauberFit.C:108:5: error: use of undeclared identifier 'cout'; did you mean 'std::cout'? [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runGlauberFit.C:108:42: error: use of undeclared identifier 'endl'; did you mean 'std::endl'? [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runGlauberFit.C:110:3: error: use of undeclared identifier 'cout'; did you mean 'std::cout'? [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runGlauberFit.C:110:78: error: use of undeclared identifier 'endl'; did you mean 'std::endl'? [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runGlauberFit.C:112:3: error: use of undeclared identifier 'cout'; did you mean 'std::cout'? [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runGlauberFit.C:112:51: error: use of undeclared identifier 'endl'; did you mean 'std::endl'? [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runGlauberFit.C:113:3: error: use of undeclared identifier 'cout'; did you mean 'std::cout'? [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runGlauberFit.C:113:50: error: use of undeclared identifier 'endl'; did you mean 'std::endl'? [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runGlauberFit.C:114:3: error: use of undeclared identifier 'cout'; did you mean 'std::cout'? [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runGlauberFit.C:114:77: error: use of undeclared identifier 'endl'; did you mean 'std::endl'? [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runGlauberFit.C:116:3: error: use of undeclared identifier 'cout'; did you mean 'std::cout'? [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runGlauberFit.C:116:40: error: use of undeclared identifier 'endl'; did you mean 'std::endl'? [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runGlauberFit.C:127:16: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] Common/Tools/Multiplicity/macros/runGlauberFit.C:128:25: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] Common/Tools/Multiplicity/macros/runGlauberFit.C:136:3: error: use of undeclared identifier 'cout'; did you mean 'std::cout'? [clang-diagnostic-error] Common/Tools/Multiplicity/macros/runGlauberFit.C:192:22: warning: no header providing "kBlack" is directly included [misc-include-cleaner] Common/Tools/Multiplicity/macros/runGlauberFit.C:213:3: warning: no header providing "TH2D" is directly included [misc-include-cleaner] Common/Tools/Multiplicity/macros/runGlauberFit.C:213:17: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] Common/Tools/Multiplicity/macros/runGlauberFit.C:294:3: warning: no header providing "TH1D" is directly included [misc-include-cleaner] Common/Tools/Multiplicity/macros/runGlauberFit.C:294:20: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] Common/Tools/Multiplicity/macros/runGlauberFit.C:295:18: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] Common/Tools/Multiplicity/macros/runGlauberFit.C:299:25: warning: no header providing "kRed" is directly included [misc-include-cleaner] Common/Tools/Multiplicity/macros/runGlauberFit.C:328:26: warning: no header providing "kGray" is directly included [misc-include-cleaner] Common/Tools/Multiplicity/macros/runGlauberFit.C:343:31: warning: no header providing "kBlue" is directly included [misc-include-cleaner] Common/Tools/Multiplicity/macros/runGlauberFit.C:348:24: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] Common/Tools/Multiplicity/macros/runGlauberFit.C:376:12: warning: variable 'lLoRangeGlauber' is not initialized [cppcoreguidelines-init-variables] Common/Tools/Multiplicity/macros/runGlauberFit.C:376:29: warning: variable 'lHiRangeGlauber' is not initialized [cppcoreguidelines-init-variables] ``` #### `Common/Tools/Multiplicity/macros/saveCorrelation.C` ```text Common/Tools/Multiplicity/macros/saveCorrelation.C:18:1: warning: included header iostream is not used directly [misc-include-cleaner] Common/Tools/Multiplicity/macros/saveCorrelation.C:23:22: error: unknown type name 'TString' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/saveCorrelation.C:23:30: error: cannot initialize a parameter of type 'int' with an lvalue of type 'const char[50]' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/saveCorrelation.C:23:94: error: unknown type name 'TString' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/saveCorrelation.C:23:102: error: cannot initialize a parameter of type 'int' with an lvalue of type 'const char[16]' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/saveCorrelation.C:25:3: error: unknown type name 'TFile' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/saveCorrelation.C:25:20: error: unknown type name 'TFile' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/saveCorrelation.C:26:3: error: unknown type name 'TNtuple' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/saveCorrelation.C:26:20: error: use of undeclared identifier 'TNtuple' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/saveCorrelation.C:26:28: error: expected expression [clang-diagnostic-error] Common/Tools/Multiplicity/macros/saveCorrelation.C:30:13: error: use of undeclared identifier 'TNtuple' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/saveCorrelation.C:30:21: error: expected expression [clang-diagnostic-error] Common/Tools/Multiplicity/macros/saveCorrelation.C:33:13: error: use of undeclared identifier 'TNtuple' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/saveCorrelation.C:33:21: error: expected expression [clang-diagnostic-error] Common/Tools/Multiplicity/macros/saveCorrelation.C:36:13: error: use of undeclared identifier 'TNtuple' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/saveCorrelation.C:36:21: error: expected expression [clang-diagnostic-error] Common/Tools/Multiplicity/macros/saveCorrelation.C:39:13: error: use of undeclared identifier 'TNtuple' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/saveCorrelation.C:39:21: error: expected expression [clang-diagnostic-error] Common/Tools/Multiplicity/macros/saveCorrelation.C:42:13: error: use of undeclared identifier 'TNtuple' [clang-diagnostic-error] Common/Tools/Multiplicity/macros/saveCorrelation.C:42:21: error: expected expression [clang-diagnostic-error] ``` #### `Common/Tools/Multiplicity/multCalibrator.cxx` ```text Common/Tools/Multiplicity/multCalibrator.cxx:110:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Common/Tools/Multiplicity/multCalibrator.cxx:269:20: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] Common/Tools/Multiplicity/multCalibrator.cxx:270:23: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] ``` #### `Common/Tools/Multiplicity/multCalibrator.h` ```text Common/Tools/Multiplicity/multCalibrator.h:38:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] ``` #### `Common/Tools/Multiplicity/multGlauberNBDFitter.cxx` ```text Common/Tools/Multiplicity/multGlauberNBDFitter.cxx:235:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Common/Tools/Multiplicity/multGlauberNBDFitter.cxx:247:13: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Common/Tools/Multiplicity/multGlauberNBDFitter.cxx:368:12: warning: variable 'F' is not initialized [cppcoreguidelines-init-variables] Common/Tools/Multiplicity/multGlauberNBDFitter.cxx:369:12: warning: variable 'f' is not initialized [cppcoreguidelines-init-variables] ``` #### `Common/Tools/Multiplicity/multGlauberNBDFitter.h` ```text Common/Tools/Multiplicity/multGlauberNBDFitter.h:32:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] ``` #### `Common/Tools/Multiplicity/multMCCalibrator.cxx` ```text Common/Tools/Multiplicity/multMCCalibrator.cxx:94:21: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Common/Tools/Multiplicity/multMCCalibrator.cxx:100:20: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `Common/Tools/Multiplicity/multMCCalibrator.h` ```text Common/Tools/Multiplicity/multMCCalibrator.h:38:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] ``` #### `Common/Tools/PID/handleParamBase.h` ```text Common/Tools/PID/handleParamBase.h:57:10: warning: Potential leak of memory pointed to by 'dt' [clang-analyzer-cplusplus.NewDeleteLeaks] ``` #### `Common/Tools/PID/handleParamTPCResponse.cxx` ```text Common/Tools/PID/handleParamTPCResponse.cxx:27:1: warning: included header program_options.hpp is not used directly [misc-include-cleaner] Common/Tools/PID/handleParamTPCResponse.cxx:39:31: warning: no header providing "boost::program_options::options_description" is directly included [misc-include-cleaner] Common/Tools/PID/handleParamTPCResponse.cxx:42:25: warning: no header providing "boost::program_options::value" is directly included [misc-include-cleaner] Common/Tools/PID/handleParamTPCResponse.cxx:49:17: warning: no header providing "boost::program_options::value" is directly included [misc-include-cleaner] Common/Tools/PID/handleParamTPCResponse.cxx:62:29: warning: no header providing "boost::program_options::value" is directly included [misc-include-cleaner] Common/Tools/PID/handleParamTPCResponse.cxx:67:10: warning: no header providing "boost::program_options::store" is directly included [misc-include-cleaner] Common/Tools/PID/handleParamTPCResponse.cxx:67:16: warning: no header providing "boost::program_options::parse_command_line" is directly included [misc-include-cleaner] Common/Tools/PID/handleParamTPCResponse.cxx:74:10: warning: no header providing "boost::program_options::notify" is directly included [misc-include-cleaner] Common/Tools/PID/handleParamTPCResponse.cxx:75:23: warning: no header providing "boost::program_options::error" is directly included [misc-include-cleaner] ``` #### `Common/Tools/PID/pidTPCModule.h` ```text Common/Tools/PID/pidTPCModule.h:29:1: warning: included header pidTPCBase.h is not used directly [misc-include-cleaner] Common/Tools/PID/pidTPCModule.h:48:1: warning: included header map is not used directly [misc-include-cleaner] Common/Tools/PID/pidTPCModule.h:49:1: warning: included header memory is not used directly [misc-include-cleaner] Common/Tools/PID/pidTPCModule.h:52:1: warning: included header vector is not used directly [misc-include-cleaner] Common/Tools/PID/pidTPCModule.h:58:8: warning: constructor does not initialize these fields: dEdxCorrected, mult, tablePIDFullEl, tablePIDFullMu, tablePIDFullPi, tablePIDFullKa, tablePIDFullPr, tablePIDFullDe, tablePIDFullTr, tablePIDFullHe, tablePIDFullAl, tablePIDTinyEl, tablePIDTinyMu, tablePIDTinyPi, tablePIDTinyKa, tablePIDTinyPr, tablePIDTinyDe, tablePIDTinyTr, tablePIDTinyHe, tablePIDTinyAl, tableTuneOnData [cppcoreguidelines-pro-type-member-init] Common/Tools/PID/pidTPCModule.h:262:27: warning: no header providing "o2::framework::DeviceSpec" is directly included [misc-include-cleaner] Common/Tools/PID/pidTPCModule.h:359:34: warning: no header providing "TFile" is directly included [misc-include-cleaner] Common/Tools/PID/pidTPCModule.h:385:39: warning: variable 'grpo' is not initialized [cppcoreguidelines-init-variables] Common/Tools/PID/pidTPCModule.h:410:16: warning: variable 'retrieveSuccess' is not initialized [cppcoreguidelines-init-variables] Common/Tools/PID/pidTPCModule.h:471:39: warning: variable 'grpo' is not initialized [cppcoreguidelines-init-variables] Common/Tools/PID/pidTPCModule.h:488:14: warning: variable 'retrieveSuccess' is not initialized [cppcoreguidelines-init-variables] Common/Tools/PID/pidTPCModule.h:503:9: warning: variable 'input_dimensions' is not initialized [cppcoreguidelines-init-variables] Common/Tools/PID/pidTPCModule.h:504:9: warning: variable 'output_dimensions' is not initialized [cppcoreguidelines-init-variables] Common/Tools/PID/pidTPCModule.h:583:14: warning: variable 'output_network' is not initialized [cppcoreguidelines-init-variables] Common/Tools/PID/pidTPCModule.h:731:20: warning: variable 'tracksForNet_size' is not initialized [cppcoreguidelines-init-variables] Common/Tools/PID/pidTPCModule.h:795:16: warning: variable 'hadronicRate' is not initialized [cppcoreguidelines-init-variables] Common/Tools/PID/pidTPCModule.h:796:13: warning: variable 'occupancy' is not initialized [cppcoreguidelines-init-variables] Common/Tools/PID/pidTPCModule.h:876:39: warning: variable 'grpo' is not initialized [cppcoreguidelines-init-variables] ``` #### `Common/Tools/TrackPropagationModule.h` ```text Common/Tools/TrackPropagationModule.h:178:82: warning: no header providing "o2::framework::RunningWorkflowInfo" is directly included [misc-include-cleaner] ``` #### `Common/Tools/TrackTuner.h` ```text Common/Tools/TrackTuner.h:24:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] Common/Tools/TrackTuner.h:611:50: warning: Called C++ object pointer is null [clang-analyzer-core.CallAndMessage] ``` #### `Common/Tools/aodDataModelGraph.cxx` ```text Common/Tools/aodDataModelGraph.cxx:78:13: warning: no header providing "std::array" is directly included [misc-include-cleaner] Common/Tools/aodDataModelGraph.cxx:145:32: warning: no header providing "fmt::format" is directly included [misc-include-cleaner] Common/Tools/aodDataModelGraph.cxx:162:60: error: no template named 'is_index_column_v' in namespace 'o2::soa'; did you mean 'is_index_column'? [clang-diagnostic-error] Common/Tools/aodDataModelGraph.cxx:195:28: error: no template named 'is_index_column_v' in namespace 'o2::soa'; did you mean 'is_index_column'? [clang-diagnostic-error] Common/Tools/aodDataModelGraph.cxx:206:18: error: use of undeclared identifier 'is_type_with_originals_v' [clang-diagnostic-error] Common/Tools/aodDataModelGraph.cxx:222:28: error: no template named 'is_index_column_v' in namespace 'o2::soa'; did you mean 'is_index_column'? [clang-diagnostic-error] Common/Tools/aodDataModelGraph.cxx:252:17: error: no template named 'is_soa_join_t' [clang-diagnostic-error] Common/Tools/aodDataModelGraph.cxx:253:34: error: typename specifier refers to non-type member 'originals' in 'o2::soa::JoinFull, o2::soa::JoinFull, o2::soa::Table, o2::aod::Hash<"TRKLTMULT/0"_h>, o2::aod::Hash<"AOD"_h>>, o2::soa::Table, o2::aod::Hash<"TPCMULT/0"_h>, o2::aod::Hash<"AOD"_h>>, o2::soa::Table, o2::aod::Hash<"PVMULT/0"_h>, o2::aod::Hash<"AOD"_h>>>, o2::soa::Table, o2::aod::Hash<"FV0MULT/0"_h>, o2::aod::Hash<"AOD"_h>>, o2::soa::Table, o2::aod::Hash<"FT0MULT/0"_h>, o2::aod::Hash<"AOD"_h>>, o2::soa::Table, o2::aod::Hash<"FDDMULT/0"_h>, o2::aod::Hash<"AOD"_h>>, o2::soa::Table, o2::aod::Hash<"ZDCMULT/0"_h>, o2::aod::Hash<"AOD"_h>>>' [clang-diagnostic-error] Common/Tools/aodDataModelGraph.cxx:253:34: error: typename specifier refers to non-type member 'originals' in 'o2::soa::Table, o2::aod::Hash<"BC/1"_h>, o2::aod::Hash<"AOD"_h>>' [clang-diagnostic-error] Common/Tools/aodDataModelGraph.cxx:253:34: error: typename specifier refers to non-type member 'originals' in 'o2::soa::Table, o2::aod::Hash<"CALOTRIGGER/0"_h>, o2::aod::Hash<"AOD"_h>>' [clang-diagnostic-error] Common/Tools/aodDataModelGraph.cxx:253:34: error: typename specifier refers to non-type member 'originals' in 'o2::soa::Table, o2::aod::Hash<"CALO/0"_h>, o2::aod::Hash<"AOD"_h>>' [clang-diagnostic-error] Common/Tools/aodDataModelGraph.cxx:253:34: error: typename specifier refers to non-type member 'originals' in 'o2::soa::Table, o2::aod::Hash<"CENTRUN2V0M/0"_h>, o2::aod::Hash<"AOD"_h>>' [clang-diagnostic-error] Common/Tools/aodDataModelGraph.cxx:253:34: error: typename specifier refers to non-type member 'originals' in 'o2::soa::Table, o2::aod::Hash<"COLLISION/1"_h>, o2::aod::Hash<"AOD"_h>>' [clang-diagnostic-error] Common/Tools/aodDataModelGraph.cxx:253:34: error: typename specifier refers to non-type member 'originals' in 'o2::soa::Table, o2::aod::Hash<"FDD/1"_h>, o2::aod::Hash<"AOD"_h>>' [clang-diagnostic-error] Common/Tools/aodDataModelGraph.cxx:253:34: error: typename specifier refers to non-type member 'originals' in 'o2::soa::Table, o2::aod::Hash<"FT0/0"_h>, o2::aod::Hash<"AOD"_h>>' [clang-diagnostic-error] Common/Tools/aodDataModelGraph.cxx:253:34: error: typename specifier refers to non-type member 'originals' in 'o2::soa::Table, o2::aod::Hash<"FV0A/0"_h>, o2::aod::Hash<"AOD"_h>>' [clang-diagnostic-error] Common/Tools/aodDataModelGraph.cxx:253:34: error: typename specifier refers to non-type member 'originals' in 'o2::soa::Table, o2::aod::Hash<"HMPID/1"_h>, o2::aod::Hash<"AOD"_h>>' [clang-diagnostic-error] Common/Tools/aodDataModelGraph.cxx:253:34: error: typename specifier refers to non-type member 'originals' in 'o2::soa::Table, o2::aod::Hash<"MCCOLLISLABEL/0"_h>, o2::aod::Hash<"AOD"_h>>' [clang-diagnostic-error] Common/Tools/aodDataModelGraph.cxx:253:34: error: typename specifier refers to non-type member 'originals' in 'o2::soa::Table, o2::aod::Hash<"MCCOLLISION/1"_h>, o2::aod::Hash<"AOD"_h>>' [clang-diagnostic-error] Common/Tools/aodDataModelGraph.cxx:253:34: error: typename specifier refers to non-type member 'originals' in 'o2::soa::Table, o2::aod::Hash<"TIMESTAMPS/0"_h>, o2::aod::Hash<"AOD"_h>>' [clang-diagnostic-error] Common/Tools/aodDataModelGraph.cxx:253:34: error: typename specifier refers to non-type member 'originals' in 'o2::soa::Table, o2::aod::Hash<"ZDC/1"_h>, o2::aod::Hash<"AOD"_h>>' [clang-diagnostic-error] Common/Tools/aodDataModelGraph.cxx:319:19: warning: no header providing "o2::aod::Hf2Prongs" is directly included [misc-include-cleaner] Common/Tools/aodDataModelGraph.cxx:320:19: warning: no header providing "o2::aod::Hf3Prongs" is directly included [misc-include-cleaner] ``` ### DPG #### `DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx` ```text DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:18:1: warning: included header map is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:24:1: warning: included header EventSelectionParams.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:28:1: warning: included header BunchFilling.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:29:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:30:1: warning: included header GRPECSObject.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:31:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:32:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:35:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:38:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:39:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:40:1: warning: included header TH3.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:51:8: warning: constructor does not initialize these fields: ccdb, nOrbits, minOrbit [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:59:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:67:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:68:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:69:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:70:26: warning: no header providing "NULL" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:75:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:84:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:92:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:93:55: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:106:74: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:161:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:184:56: warning: no header providing "o2::constants::lhc::LHCMaxBunches" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:317:24: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:404:27: warning: no header providing "std::abs" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:464:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx` ```text DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:19:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:20:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:27:1: warning: included header BunchFilling.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:29:1: warning: included header GRPECSObject.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:30:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:36:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:37:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:38:1: warning: included header TH3.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:51:8: warning: constructor does not initialize these fields: ccdb, nOrbits, minOrbit [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:53:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:98:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:98:68: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:120:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:121:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:122:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:123:26: warning: no header providing "NULL" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:128:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:137:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:144:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:145:74: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:150:34: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:155:60: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:160:5: warning: no header providing "TAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:160:30: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:160:66: warning: no header providing "TH1" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:209:56: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:253:67: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:300:44: warning: no header providing "TMath::TwoPi" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:348:106: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:443:90: warning: no header providing "o2::framework::kTHnF" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:485:18: warning: no header providing "TH2" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:587:56: warning: no header providing "o2::constants::lhc::LHCMaxBunches" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:615:45: warning: no header providing "o2::constants::lhc::LHCBunchSpacingNS" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:657:7: warning: no header providing "int32_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:753:5: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:809:46: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:1306:20: warning: no header providing "asin" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:1319:33: warning: no header providing "fabs" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:1649:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTEvent/eventSelectionQa.cxx` ```text DPG/Tasks/AOTEvent/eventSelectionQa.cxx:68:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTEvent/eventSelectionQa.cxx:114:61: warning: 'true' and 'false' expressions are equivalent [misc-redundant-expression] DPG/Tasks/AOTEvent/eventSelectionQa.cxx:116:61: warning: 'true' and 'false' expressions are equivalent [misc-redundant-expression] ``` #### `DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx` ```text DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:18:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:19:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:22:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:24:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:27:1: warning: included header BunchFilling.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:28:1: warning: included header Digit.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:31:1: warning: included header GRPECSObject.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:32:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:38:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:39:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:40:1: warning: included header TH3.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:54:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:55:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:70:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:71:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:72:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:73:26: warning: no header providing "NULL" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:78:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:86:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:98:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:100:35: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:159:56: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:668:3: warning: no header providing "int32_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:677:25: warning: no header providing "std::abs" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:700:56: warning: no header providing "o2::constants::lhc::LHCMaxBunches" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:712:16: warning: no header providing "floor" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:713:16: warning: no header providing "ceil" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:796:18: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:901:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:1015:62: warning: no header providing "sqrt" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:1813:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:1824:11: warning: no header providing "fabs" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTEvent/lumiQa.cxx` ```text DPG/Tasks/AOTEvent/lumiQa.cxx:26:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTEvent/lumiQa.cxx:27:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lumiQa.cxx:28:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lumiQa.cxx:31:55: warning: no header providing "o2::constants::lhc::LHCMaxBunches" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lumiQa.cxx:32:8: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lumiQa.cxx:38:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lumiQa.cxx:43:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lumiQa.cxx:57:32: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lumiQa.cxx:83:35: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lumiQa.cxx:87:42: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lumiQa.cxx:94:24: warning: no header providing "Form" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lumiQa.cxx:99:7: warning: no header providing "int64_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lumiQa.cxx:114:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] DPG/Tasks/AOTEvent/lumiQa.cxx:132:29: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/lumiQa.cxx:160:13: warning: no header providing "fabs" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTEvent/matchingQa.cxx` ```text DPG/Tasks/AOTEvent/matchingQa.cxx:27:34: warning: no header providing "o2::constants::lhc::LHCBunchSpacingNS" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:28:1: warning: no header providing "int32_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:28:44: warning: no header providing "o2::constants::lhc::LHCMaxBunches" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:32:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTEvent/matchingQa.cxx:33:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:34:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:36:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:50:8: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:52:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:56:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:74:5: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:84:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:92:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:102:43: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:108:35: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:110:45: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:123:38: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:184:46: warning: no header providing "std::map" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:193:25: warning: no header providing "std::abs" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:208:53: warning: no header providing "Long64_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:210:7: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:211:78: warning: no header providing "o2::constants::lhc::LHCOrbitMUS" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:240:10: warning: no header providing "std::fill" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:271:17: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:283:31: warning: no header providing "BIT" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:289:11: warning: no header providing "fabs" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:355:12: warning: no header providing "std::nth_element" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:359:47: warning: no header providing "TMath::Nint" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:364:11: warning: using floating point absolute value function 'fabs' when argument is of integer type [clang-diagnostic-absolute-value] DPG/Tasks/AOTEvent/matchingQa.cxx:377:11: warning: no header providing "std::sort" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:419:31: warning: no header providing "pow" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:468:29: warning: no header providing "sqrt" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:500:30: warning: no header providing "std::ceil" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:702:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/matchingQa.cxx:808:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTEvent/rofBorderQa.cxx` ```text DPG/Tasks/AOTEvent/rofBorderQa.cxx:54:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `DPG/Tasks/AOTEvent/rofOccupancyQa.cxx` ```text DPG/Tasks/AOTEvent/rofOccupancyQa.cxx:19:1: warning: included header ConfigParamSpec.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTEvent/rofOccupancyQa.cxx:40:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTEvent/rofOccupancyQa.cxx:42:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/rofOccupancyQa.cxx:53:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/rofOccupancyQa.cxx:54:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/rofOccupancyQa.cxx:59:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/rofOccupancyQa.cxx:64:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/rofOccupancyQa.cxx:71:34: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/rofOccupancyQa.cxx:82:52: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/rofOccupancyQa.cxx:373:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/rofOccupancyQa.cxx:373:72: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/rofOccupancyQa.cxx:373:98: warning: no header providing "o2::aod::track::PVContributor" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/rofOccupancyQa.cxx:424:7: warning: no header providing "int32_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/rofOccupancyQa.cxx:438:56: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] DPG/Tasks/AOTEvent/rofOccupancyQa.cxx:1359:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTEvent/timeDependentQa.cxx` ```text DPG/Tasks/AOTEvent/timeDependentQa.cxx:68:8: warning: constructor does not initialize these fields: ccdb, axRctFlags [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTEvent/timeDependentQa.cxx:292:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] DPG/Tasks/AOTEvent/timeDependentQa.cxx:328:20: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `DPG/Tasks/AOTTrack/D0CalibTables.h` ```text DPG/Tasks/AOTTrack/D0CalibTables.h:19:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/D0CalibTables.h:25:1: warning: included header types.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/D0CalibTables.h:28:1: warning: included header limits is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/D0CalibTables.h:53:35: warning: no header providing "std::clamp" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/D0CalibTables.h:88:22: warning: no header providing "std::asinh" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/MonitorFilterBit.cxx` ```text DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:42:42: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:43:42: warning: no header providing "int16_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:67:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:73:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:73:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:76:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:77:53: warning: no header providing "M_PI" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:83:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:84:3: warning: no header providing "Int_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:86:42: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:86:55: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:87:61: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:89:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:89:70: warning: no header providing "o2::aod::track::signed1Pt" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:89:106: warning: no header providing "o2::aod::track::tpcNClsFindable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:89:154: warning: no header providing "o2::aod::track::itsChi2NCl" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:89:168: warning: no header providing "float_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:89:197: warning: no header providing "o2::aod::track::trackType" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:89:235: warning: no header providing "o2::aod::track::TrackTypeEnum" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:91:106: warning: no header providing "o2::aod::track::tpcChi2NCl" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:99:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:102:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:110:81: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:115:104: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:124:165: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:189:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:190:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:201:105: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:229:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:231:42: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:233:91: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:242:46: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:242:67: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:242:145: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:371:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:371:29: warning: no header providing "int64_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:405:176: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:547:23: warning: no header providing "o2::aod::McCollision" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/PID/Combined/qaPIDWithV0s.cxx` ```text DPG/Tasks/AOTTrack/PID/Combined/qaPIDWithV0s.cxx:21:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/Combined/qaPIDWithV0s.cxx:22:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/Combined/qaPIDWithV0s.cxx:23:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/Combined/qaPIDWithV0s.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/Combined/qaPIDWithV0s.cxx:33:1: warning: included header Track.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/Combined/qaPIDWithV0s.cxx:45:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/Combined/qaPIDWithV0s.cxx:45:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/Combined/qaPIDWithV0s.cxx:47:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/Combined/qaPIDWithV0s.cxx:58:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/Combined/qaPIDWithV0s.cxx:59:46: warning: no header providing "HIST" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/Combined/qaPIDWithV0s.cxx:61:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/Combined/qaPIDWithV0s.cxx:63:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/Combined/qaPIDWithV0s.cxx:73:25: warning: no header providing "TH1" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/Combined/qaPIDWithV0s.cxx:73:48: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/Combined/qaPIDWithV0s.cxx:95:16: warning: no header providing "TH2" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/PID/HMPID/hmpidDeuteron.cxx` ```text DPG/Tasks/AOTTrack/PID/HMPID/hmpidDeuteron.cxx:18:1: warning: included header TString.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidDeuteron.cxx:24:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidDeuteron.cxx:24:50: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidDeuteron.cxx:26:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidDeuteron.cxx:38:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidDeuteron.cxx:41:64: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidDeuteron.cxx:81:56: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidDeuteron.cxx:99:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidDeuteron.cxx:106:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidDeuteron.cxx:106:73: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx` ```text DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:14:1: warning: included header PIDTOF.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:15:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:16:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:17:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:18:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:21:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:25:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:27:1: warning: included header DCA.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:28:1: warning: included header PID.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:29:1: warning: included header Track.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:30:1: warning: included header TrackParametrization.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:35:1: warning: included header TTree.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:117:44: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:117:85: warning: no header providing "o2::constants::physics::MassKaonCharged" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:117:126: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:122:17: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:136:16: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:137:16: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:155:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:157:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:188:13: warning: member 'rich0' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:188:24: warning: member 'rich1' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:188:35: warning: member 'rich2' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:188:46: warning: member 'rich3' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:188:57: warning: member 'rich4' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:188:68: warning: member 'rich5' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:188:79: warning: member 'rich6' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:189:13: warning: member 'hv0' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:189:22: warning: member 'hv1' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:189:31: warning: member 'hv2' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:189:40: warning: member 'hv3' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:189:49: warning: member 'hv4' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:189:58: warning: member 'hv5' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:198:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:200:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:203:60: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:205:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:211:46: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:242:18: warning: no header providing "Form" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:312:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:318:45: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:326:52: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx` ```text DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:14:1: warning: included header PIDTOF.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:15:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:22:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:25:1: warning: included header CcdbApi.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:27:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:31:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:33:1: warning: included header DCA.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:34:1: warning: included header PID.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:35:1: warning: included header Track.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:36:1: warning: included header TrackParametrization.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:38:1: warning: included header TTree.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:47:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:48:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:50:9: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:50:18: warning: member 'axisEvtCounter' of type 'const AxisSpec' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:53:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:54:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:55:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:58:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:70:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx:77:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx` ```text DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:25:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:54:6: warning: no header providing "std::array" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:54:17: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:54:28: warning: no header providing "TH2" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:58:58: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:147:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:148:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:148:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:162:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:163:55: warning: no header providing "TMath::TwoPi" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:171:16: warning: no header providing "int16_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:180:38: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:180:149: warning: no header providing "std::cosh" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:188:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:191:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:205:25: warning: no header providing "TH1" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:205:49: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:215:35: warning: no header providing "Form" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:232:36: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:249:48: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:257:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:257:57: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:257:82: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:259:35: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:259:49: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:259:59: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:260:42: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:260:55: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:270:31: warning: no header providing "o2::soa::Attach" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/ITS/qaPIDITS.cxx:313:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx` ```text DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:19:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:22:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:38:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:119:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:121:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:125:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:126:55: warning: no header providing "TMath::TwoPi" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:144:24: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:145:30: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:186:29: warning: no header providing "Form" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:188:28: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:188:47: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:190:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:190:52: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:192:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:195:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:196:41: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:197:41: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:198:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:201:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:202:46: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:203:46: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:204:49: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:206:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:207:46: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:208:46: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:209:49: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:219:30: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:224:27: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:226:32: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:228:32: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:231:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:236:30: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:243:41: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:244:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:245:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:246:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:248:41: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:249:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:250:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:251:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:255:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:256:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:257:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:258:46: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:260:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:261:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:262:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:263:46: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:267:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:290:25: warning: no header providing "TH1" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:290:49: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:502:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:511:35: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:511:49: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:511:59: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:512:42: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:512:55: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOF.cxx:663:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx` ```text DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:19:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:22:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:26:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:35:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:37:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:48:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:55:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:57:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:76:39: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:190:25: warning: no header providing "TH1" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:190:49: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:199:35: warning: no header providing "TString" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:202:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:211:23: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:211:44: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:213:35: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:213:49: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:213:59: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:214:42: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:214:55: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBeta.cxx:235:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx` ```text DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:19:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:22:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:26:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:35:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:37:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:48:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:55:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:57:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:76:39: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:190:25: warning: no header providing "TH1" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:190:49: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:199:35: warning: no header providing "TString" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:202:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:211:23: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:211:44: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:213:35: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:213:49: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:213:59: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:214:42: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:214:55: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:221:31: warning: no header providing "o2::soa::Attach" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFBetaImp.cxx:235:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx` ```text DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:28:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:38:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:44:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:51:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:53:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:54:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:56:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:74:68: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:88:85: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:124:36: warning: no header providing "Form" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:127:43: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:151:78: warning: no header providing "o2::framework::kTH2S" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:160:33: warning: no header providing "TString" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:212:59: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:215:68: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:228:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:228:31: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:228:46: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:233:43: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:235:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:235:45: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:339:72: warning: no header providing "o2::pid::tof::Beta" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:344:72: warning: no header providing "o2::pid::tof::TOFMass" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:436:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:438:39: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:439:63: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:442:23: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:443:23: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:444:23: warning: no header providing "o2::aod::FT0s" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:445:23: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFEvTime.cxx:539:20: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx` ```text DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:34:6: warning: no header providing "std::array" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:34:17: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:34:28: warning: no header providing "TH1" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:43:28: warning: no header providing "TH2" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:78:48: warning: no header providing "o2::track::pid_constants::sMasses" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:79:54: warning: no header providing "o2::constants::physics::LightSpeedCm2PS" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:81:28: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:81:42: warning: no header providing "std::pow" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:94:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:98:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:100:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:112:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:123:13: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:124:32: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:178:43: warning: no header providing "Form" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:183:87: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:194:83: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:289:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:301:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:671:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:671:31: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:671:44: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:675:47: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:676:32: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:676:49: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:677:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:677:39: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:678:17: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:678:58: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:683:21: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TOF/qaPIDTOFMC.cxx:728:14: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx` ```text DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:37:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:88:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:90:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:94:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:95:55: warning: no header providing "TMath::TwoPi" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:110:16: warning: no header providing "int16_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:114:24: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:115:30: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:161:29: warning: no header providing "Form" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:163:28: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:163:47: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:165:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:165:52: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:167:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:176:30: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:181:27: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:183:32: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:185:32: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:190:30: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:197:5: warning: no header providing "o2::framework::HistogramConfigSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:197:45: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:199:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:206:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:207:32: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:208:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:209:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:210:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:211:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:215:45: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:219:38: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:220:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:222:38: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:223:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:227:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:243:25: warning: no header providing "TH1" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:243:49: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:365:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:374:35: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:374:49: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:374:59: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:375:42: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:375:55: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPC.cxx:465:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx` ```text DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:33:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:37:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:195:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:197:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:209:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:219:13: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:220:32: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:274:43: warning: no header providing "Form" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:278:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:278:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:279:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:280:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:284:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:285:32: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:286:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:287:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:291:32: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:291:50: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:293:46: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:298:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:299:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:300:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:302:49: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:303:49: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:304:49: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:307:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:308:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:309:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:310:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:314:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:531:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:531:17: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:531:46: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:532:17: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:532:58: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:534:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:534:31: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:534:48: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:535:44: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:539:31: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCMC.cxx:541:21: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx` ```text DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:22:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:32:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:34:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:43:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:59:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:59:19: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:59:30: warning: no header providing "TH2" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:61:30: warning: no header providing "TH3" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:65:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:67:57: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:67:84: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:67:111: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:68:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:76:30: warning: no header providing "TH1" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:76:54: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:84:41: warning: no header providing "Form" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:127:93: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:137:89: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:174:90: warning: no header providing "std::abs" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:257:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:257:28: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:257:45: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:258:40: warning: no header providing "o2::aod::track::itsChi2NCl" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:259:41: warning: no header providing "o2::aod::track::tpcChi2NCl" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:260:32: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:260:42: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:260:57: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:261:36: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:262:26: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:263:26: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/PID/TPC/qaPIDTPCSignal.cxx:279:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/V0Cascades/perfK0sResolution.cxx` ```text DPG/Tasks/AOTTrack/V0Cascades/perfK0sResolution.cxx:47:1: warning: included header PID.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/perfK0sResolution.cxx:54:1: warning: included header RtypesCore.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/perfK0sResolution.cxx:67:73: warning: no header providing "o2::aod::PVMults" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/perfK0sResolution.cxx:77:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTTrack/V0Cascades/perfK0sResolution.cxx:138:18: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/perfK0sResolution.cxx:359:83: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/perfK0sResolution.cxx:365:88: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/perfK0sResolution.cxx:371:84: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/perfK0sResolution.cxx:383:91: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/perfK0sResolution.cxx:389:94: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/perfK0sResolution.cxx:395:95: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/perfK0sResolution.cxx:401:95: warning: no header providing "o2::aod::evsel::kIsVertexTRDmatched" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/perfK0sResolution.cxx:407:91: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/perfK0sResolution.cxx:413:97: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/perfK0sResolution.cxx:419:100: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStrict" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/perfK0sResolution.cxx:425:100: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeNarrow" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/perfK0sResolution.cxx:431:91: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/perfK0sResolution.cxx:437:94: warning: no header providing "o2::aod::evsel::kNoCollInRofStrict" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/perfK0sResolution.cxx:734:66: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/V0Cascades/qaCascades.cxx` ```text DPG/Tasks/AOTTrack/V0Cascades/qaCascades.cxx:21:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaCascades.cxx:22:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaCascades.cxx:23:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaCascades.cxx:24:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaCascades.cxx:26:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaCascades.cxx:29:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaCascades.cxx:31:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaCascades.cxx:35:1: warning: included header Track.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaCascades.cxx:48:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaCascades.cxx:50:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaCascades.cxx:51:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaCascades.cxx:53:48: warning: no header providing "HIST" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaCascades.cxx:55:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaCascades.cxx:58:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaCascades.cxx:62:38: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx` ```text DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx:24:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx:25:1: warning: included header DCA.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx:26:1: warning: included header Track.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx:27:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx:28:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx:29:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx:30:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx:55:6: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx:61:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx:62:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx:63:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx:64:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx:65:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx:67:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx:72:54: warning: no header providing "Form" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx:72:110: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx:81:7: warning: no header providing "TAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx:92:25: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx:104:22: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx` ```text DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx:14:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx:15:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx:16:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx:20:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx:22:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx:26:1: warning: included header Track.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx:36:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx:38:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx:39:48: warning: no header providing "HIST" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx:41:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx:43:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx:52:40: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx:53:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx:56:65: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx:86:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx:96:14: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx:105:12: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx:136:9: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx:162:19: warning: no header providing "sqrt" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/V0Cascades/qaK0sTrackingEfficiency.cxx:174:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/V0Cascades/qaLamMomResolution.cxx` ```text DPG/Tasks/AOTTrack/V0Cascades/qaLamMomResolution.cxx:60:8: warning: constructor does not initialize these fields: ccdb, momProtonRecIU, momPionRecIU, momProtonRecIUErr, momPionRecIUErr, momProtonRec, momPionRec, momProtonRecErr, momPionRecErr, posProtonRecIU, posPionRecIU, posProtonRecIUErr, posPionRecIUErr, DCAProtonRec, DCAPionRec, DCAProtonRecErr, DCAPionRecErr, momProtonGen, momPionGen, DCAProtonGen, DCAPionGen [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTTrack/V0Cascades/qaLamMomResolution.cxx:290:5: warning: uninitialized record type: 'pioncv' [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTTrack/V0Cascades/qaLamMomResolution.cxx:290:5: warning: uninitialized record type: 'protoncv' [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTTrack/V0Cascades/qaLamMomResolution.cxx:424:17: warning: uninitialized record type: 'cNeg' [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTTrack/V0Cascades/qaLamMomResolution.cxx:424:17: warning: uninitialized record type: 'cPos' [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTTrack/V0Cascades/qaLamMomResolution.cxx:520:17: warning: uninitialized record type: 'cNeg' [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTTrack/V0Cascades/qaLamMomResolution.cxx:520:17: warning: uninitialized record type: 'cPos' [cppcoreguidelines-pro-type-member-init] ``` #### `DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx` ```text DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:28:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:39:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:44:1: warning: included header TH1D.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:47:1: warning: included header algorithm is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:61:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:63:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:67:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:68:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:71:18: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:107:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:107:45: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:107:75: warning: no header providing "o2::aod::TracksCov" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:107:91: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:109:43: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:109:76: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:112:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:115:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:115:21: warning: no header providing "o2::ccdb::BasicCCDBManager" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:116:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:128:3: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:131:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:131:13: warning: no header providing "TH1D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:133:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:141:31: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:163:33: warning: no header providing "o2::base::Propagator" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:177:29: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:280:11: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:502:13: warning: no header providing "int16_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:513:13: warning: no header providing "int8_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:842:32: warning: no header providing "o2::aod::TracksQAVersion" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx:846:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/qaDcaMC.cxx` ```text DPG/Tasks/AOTTrack/qaDcaMC.cxx:23:1: warning: included header DCA.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:24:1: warning: included header Track.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:25:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:27:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:29:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:34:1: warning: included header THashList.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:63:44: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:72:6: warning: no header providing "std::array" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:72:28: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:72:39: warning: no header providing "TH3" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:81:8: warning: constructor does not initialize these fields: ptMin, ptMax, etaMin, etaMax, phiMin, phiMax, yMin, yMax [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTTrack/qaDcaMC.cxx:83:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:108:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:118:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:122:12: warning: no header providing "Form" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:144:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:159:11: warning: no header providing "TString" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:165:137: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:181:70: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:230:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:270:37: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:273:26: warning: logical expression is always true [misc-redundant-expression] DPG/Tasks/AOTTrack/qaDcaMC.cxx:329:17: warning: no header providing "abs" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:392:36: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:392:50: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:392:67: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:393:39: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:393:60: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaDcaMC.cxx:394:56: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/qaEfficiency.cxx` ```text DPG/Tasks/AOTTrack/qaEfficiency.cxx:199:8: warning: constructor does not initialize these fields: ptMin, ptMax, etaMin, etaMax, phiMin, phiMax, yMin, yMax [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTTrack/qaEfficiency.cxx:1036:26: warning: logical expression is always true [misc-redundant-expression] DPG/Tasks/AOTTrack/qaEfficiency.cxx:1792:9: warning: Value stored to 'centrality' is never read [clang-analyzer-deadcode.DeadStores] DPG/Tasks/AOTTrack/qaEfficiency.cxx:1793:9: warning: Value stored to 'occupancy' is never read [clang-analyzer-deadcode.DeadStores] ``` #### `DPG/Tasks/AOTTrack/qaEventTrack.cxx` ```text DPG/Tasks/AOTTrack/qaEventTrack.cxx:69:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTTrack/qaEventTrack.cxx:222:31: warning: unchecked access to optional value [bugprone-unchecked-optional-access] DPG/Tasks/AOTTrack/qaEventTrack.cxx:223:196: warning: unchecked access to optional value [bugprone-unchecked-optional-access] DPG/Tasks/AOTTrack/qaEventTrack.cxx:225:31: warning: unchecked access to optional value [bugprone-unchecked-optional-access] DPG/Tasks/AOTTrack/qaEventTrack.cxx:226:201: warning: unchecked access to optional value [bugprone-unchecked-optional-access] ``` #### `DPG/Tasks/AOTTrack/qaEventTrack.h` ```text DPG/Tasks/AOTTrack/qaEventTrack.h:22:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrack.h:38:50: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrack.h:110:48: warning: no header providing "int16_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrack.h:115:38: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/qaEventTrackLite.cxx` ```text DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:27:1: warning: included header DCA.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:28:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:29:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:30:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:31:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:32:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:46:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:46:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:50:53: warning: no header providing "M_PI" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:56:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:128:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:145:187: warning: no header providing "std::pow" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:170:117: warning: no header providing "std::endl" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:187:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:189:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:199:46: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:200:51: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:213:78: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:220:62: warning: no header providing "o2::framework::kTProfile2D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:273:125: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:294:89: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:301:18: warning: no header providing "TH2" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:304:78: warning: no header providing "Form" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:329:96: warning: no header providing "int16_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:339:16: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:352:5: warning: no header providing "Bool_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:503:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:626:28: warning: no header providing "abs" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:628:7: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:638:9: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ``` #### `DPG/Tasks/AOTTrack/qaEventTrackLiteProducer.cxx` ```text DPG/Tasks/AOTTrack/qaEventTrackLiteProducer.cxx:22:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLiteProducer.cxx:23:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLiteProducer.cxx:24:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLiteProducer.cxx:33:1: warning: included header HistogramRegistry.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLiteProducer.cxx:35:1: warning: included header DCA.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLiteProducer.cxx:46:8: warning: constructor does not initialize these fields: counterColl, counterDF [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTTrack/qaEventTrackLiteProducer.cxx:48:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLiteProducer.cxx:55:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLiteProducer.cxx:88:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLiteProducer.cxx:108:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLiteProducer.cxx:186:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaEventTrackLiteProducer.cxx:234:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/qaFakeHits.cxx` ```text DPG/Tasks/AOTTrack/qaFakeHits.cxx:19:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:21:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:22:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:23:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:30:1: warning: included header DCA.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:31:1: warning: included header Track.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:35:44: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:42:6: warning: no header providing "std::array" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:42:17: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:42:28: warning: no header providing "TH2" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:55:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:75:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:77:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:111:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:118:11: warning: no header providing "TString" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:118:27: warning: no header providing "Form" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:119:116: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:133:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:152:26: warning: logical expression is always true [misc-redundant-expression] DPG/Tasks/AOTTrack/qaFakeHits.cxx:247:36: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:247:50: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:247:67: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:248:69: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:251:25: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:253:25: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:254:25: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaFakeHits.cxx:260:45: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/qaImpPar.cxx` ```text DPG/Tasks/AOTTrack/qaImpPar.cxx:55:8: warning: constructor does not initialize these fields: isPIDPionApplied, isPIDKaonApplied, isPIDProtonApplied, ccdb, mRunNumber [cppcoreguidelines-pro-type-member-init] ``` #### `DPG/Tasks/AOTTrack/qaMatchEff.cxx` ```text DPG/Tasks/AOTTrack/qaMatchEff.cxx:83:12: warning: using decl 'array' is unused [misc-unused-using-decls] DPG/Tasks/AOTTrack/qaMatchEff.cxx:99:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx` ```text DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:16:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:17:1: warning: included header EventSelectionParams.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:20:1: warning: included header BunchFilling.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:21:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:22:1: warning: included header GRPECSObject.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:23:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:24:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:29:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:32:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:34:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:34:21: warning: no header providing "std::string" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:35:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:37:3: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:38:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:42:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:57:7: warning: no header providing "int64_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:69:17: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:76:23: warning: no header providing "floor" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:77:23: warning: no header providing "ceil" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:79:37: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/qaSignChargeMC.cxx` ```text DPG/Tasks/AOTTrack/qaSignChargeMC.cxx:27:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTTrack/qaSignChargeMC.cxx:29:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaSignChargeMC.cxx:30:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaSignChargeMC.cxx:37:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaSignChargeMC.cxx:39:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaSignChargeMC.cxx:41:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaSignChargeMC.cxx:44:46: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaSignChargeMC.cxx:59:25: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaSignChargeMC.cxx:59:39: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaSignChargeMC.cxx:59:58: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaSignChargeMC.cxx:59:80: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaSignChargeMC.cxx:60:25: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaSignChargeMC.cxx:63:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaSignChargeMC.cxx:76:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/qaTrackSelection.cxx` ```text DPG/Tasks/AOTTrack/qaTrackSelection.cxx:31:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:35:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:44:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:57:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:60:53: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:61:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:66:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:69:46: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:70:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:97:51: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:112:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:128:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:151:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:153:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:156:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:159:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:162:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:165:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:168:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:171:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:174:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:177:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:180:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:183:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:186:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:189:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:192:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:195:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:198:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:201:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:204:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:207:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:210:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:213:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:216:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:336:28: warning: no header providing "o2::aod::track::TrackTypeEnum" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:337:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:340:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:343:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:346:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:349:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:354:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:354:49: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:354:66: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSelection.cxx:355:48: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/qaTrackSplitting.cxx` ```text DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:30:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:31:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:56:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:57:3: warning: no header providing "TrackSelection" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:59:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:61:36: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:63:30: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:64:38: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:83:40: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:83:54: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:84:50: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:84:67: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:85:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:85:27: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:85:44: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:86:44: warning: no header providing "o2::aod::track::phi" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:87:40: warning: no header providing "o2::aod::track::itsClusterSizes" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:87:59: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:88:40: warning: no header providing "o2::aod::track::tpcNClsFindable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:88:59: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:92:25: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:111:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:113:73: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:114:69: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:117:27: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:122:18: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:124:10: warning: no header providing "std::map" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:124:14: warning: no header providing "int64_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:124:28: warning: no header providing "std::vector" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:144:65: warning: no header providing "std::make_shared" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx` ```text DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:33:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:51:20: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:128:1: warning: no header providing "DECLARE_SOA_INDEX_COLUMN" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:129:1: warning: no header providing "DECLARE_SOA_INDEX_COLUMN_FULL" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:129:52: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:132:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:147:52: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:152:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:153:24: warning: no header providing "o2::soa::Index" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:169:24: warning: no header providing "o2::soa::Marker" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:218:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:220:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:230:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:231:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:246:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:252:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:258:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:278:36: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:278:59: warning: no header providing "o2::aod::TracksCov" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:278:91: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:279:69: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:280:46: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:282:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:283:28: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:283:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:284:73: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:285:44: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:290:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:290:68: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:291:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:291:70: warning: no header providing "o2::aod::track::signed1Pt" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:300:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:302:9: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:303:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:307:97: warning: no header providing "std::array" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:315:20: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:315:31: warning: no header providing "TH2" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:320:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:322:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:333:43: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:333:70: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:333:97: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:346:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:355:111: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:364:22: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:374:51: warning: no header providing "Form" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:429:7: warning: no header providing "SETBIT" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:439:9: warning: no header providing "int8_t" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:545:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:606:11: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:606:16: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:710:17: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:734:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:753:31: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:943:36: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:951:15: warning: no header providing "o2::base::Propagator" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:965:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:1138:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:1138:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:1192:91: warning: no header providing "o2::aod::track::TrackTypeEnum" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:1355:56: warning: no header providing "o2::aod::evsel::kIsGoodITSLayer3" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:1358:56: warning: no header providing "o2::aod::evsel::kIsGoodITSLayer0123" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:1361:56: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:1520:44: warning: no header providing "o2::aod::McCollision" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx:1529:9: warning: variable 'indexProbe' is not initialized [cppcoreguidelines-init-variables] ``` #### `DPG/Tasks/AOTTrack/unitTestForReconstruction.cxx` ```text DPG/Tasks/AOTTrack/unitTestForReconstruction.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/unitTestForReconstruction.cxx:22:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/unitTestForReconstruction.cxx:24:1: warning: included header Logger.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/unitTestForReconstruction.cxx:25:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/unitTestForReconstruction.cxx:27:1: warning: included header DCA.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/unitTestForReconstruction.cxx:28:1: warning: included header Track.h is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/unitTestForReconstruction.cxx:31:1: warning: included header memory is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/unitTestForReconstruction.cxx:32:1: warning: included header random is not used directly [misc-include-cleaner] DPG/Tasks/AOTTrack/unitTestForReconstruction.cxx:47:54: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/unitTestForReconstruction.cxx:50:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/unitTestForReconstruction.cxx:53:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/unitTestForReconstruction.cxx:56:54: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] DPG/Tasks/AOTTrack/unitTestForReconstruction.cxx:96:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/FDD/qaFDD.cxx` ```text DPG/Tasks/FDD/qaFDD.cxx:23:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:25:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:26:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:31:46: warning: no header providing "o2::constants::lhc::LHCMaxBunches" is directly included [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:33:24: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:38:8: warning: constructor does not initialize these fields: ccdb, timeFrameInMs, nOrAFDD, nOrCFDD, nVertexFDD, nOrAFTO, nOrCFTO, nVertexFTO, RateVertexPerBCFDD, RateVertexPerBCFT0 [cppcoreguidelines-pro-type-member-init] DPG/Tasks/FDD/qaFDD.cxx:40:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:48:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:50:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:56:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:56:13: warning: no header providing "TH2F" is directly included [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:59:13: warning: no header providing "TH1F" is directly included [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:80:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:82:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:84:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:110:19: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:222:126: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:300:5: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:343:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:355:23: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:390:17: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:395:22: warning: no header providing "TH1" is directly included [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:395:27: warning: no header providing "HIST" is directly included [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:416:24: warning: no header providing "TH2" is directly included [misc-include-cleaner] DPG/Tasks/FDD/qaFDD.cxx:559:146: warning: no header providing "o2::constants::physics::LightSpeedCm2NS" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/FT0/qaFT0TrgBased.cxx` ```text DPG/Tasks/FT0/qaFT0TrgBased.cxx:18:1: warning: included header cstdint is not used directly [misc-include-cleaner] DPG/Tasks/FT0/qaFT0TrgBased.cxx:28:1: warning: included header LHCConstants.h is not used directly [misc-include-cleaner] DPG/Tasks/FT0/qaFT0TrgBased.cxx:29:1: warning: included header Triggers.h is not used directly [misc-include-cleaner] DPG/Tasks/FT0/qaFT0TrgBased.cxx:46:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/FT0/qaFT0TrgBased.cxx:128:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/FT0/qaFT0TrgBased.cxx:239:28: warning: no header providing "TH1" is directly included [misc-include-cleaner] DPG/Tasks/FT0/qaFT0TrgBased.cxx:390:9: warning: redundant condition 'hasFT0' [bugprone-redundant-branch-condition] DPG/Tasks/FT0/qaFT0TrgBased.cxx:468:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] DPG/Tasks/FT0/qaFT0TrgBased.cxx:562:9: warning: redundant condition 'hasFT0' [bugprone-redundant-branch-condition] DPG/Tasks/FT0/qaFT0TrgBased.cxx:627:44: warning: no header providing "std::numeric_limits" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/FV0/qaFV0.cxx` ```text DPG/Tasks/FV0/qaFV0.cxx:18:1: warning: included header cstdint is not used directly [misc-include-cleaner] DPG/Tasks/FV0/qaFV0.cxx:35:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] DPG/Tasks/FV0/qaFV0.cxx:36:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] DPG/Tasks/FV0/qaFV0.cxx:138:29: warning: no header providing "TH1" is directly included [misc-include-cleaner] DPG/Tasks/FV0/qaFV0.cxx:151:35: warning: no header providing "TH2" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/ITS/filterTracks.cxx` ```text DPG/Tasks/ITS/filterTracks.cxx:18:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:19:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:20:1: warning: included header CollisionAssociationTables.h is not used directly [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:27:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:81:39: warning: no header providing "o2::aod::collision::BCId" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:82:39: warning: no header providing "o2::aod::collision::PosX" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:83:39: warning: no header providing "o2::aod::collision::PosY" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:84:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:85:39: warning: no header providing "o2::aod::collision::CovXX" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:86:39: warning: no header providing "o2::aod::collision::CovXY" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:87:39: warning: no header providing "o2::aod::collision::CovYY" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:88:39: warning: no header providing "o2::aod::collision::CovXZ" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:89:39: warning: no header providing "o2::aod::collision::CovYZ" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:90:39: warning: no header providing "o2::aod::collision::CovZZ" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:91:39: warning: no header providing "o2::aod::collision::Flags" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:92:39: warning: no header providing "o2::aod::collision::Chi2" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:93:39: warning: no header providing "o2::aod::collision::NumContrib" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:94:39: warning: no header providing "o2::aod::collision::CollisionTime" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:95:39: warning: no header providing "o2::aod::collision::CollisionTimeRes" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:117:35: warning: no header providing "o2::aod::track::CollisionId" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:120:35: warning: no header providing "o2::aod::track::TrackType" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:121:35: warning: no header providing "o2::aod::track::X" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:122:35: warning: no header providing "o2::aod::track::Alpha" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:123:35: warning: no header providing "o2::aod::track::Y" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:124:35: warning: no header providing "o2::aod::track::Z" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:125:35: warning: no header providing "o2::aod::track::Snp" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:126:35: warning: no header providing "o2::aod::track::Tgl" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:127:35: warning: no header providing "o2::aod::track::Signed1Pt" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:130:58: warning: no header providing "o2::aod::track::Eta" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:139:35: warning: no header providing "o2::aod::track::ITSClusterSizes" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:140:35: warning: no header providing "o2::aod::track::ITSChi2NCl" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:141:35: warning: no header providing "o2::aod::track::TPCChi2NCl" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:143:35: warning: no header providing "o2::aod::track::TrackTime" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:146:40: warning: no header providing "o2::aod::mcparticle::PdgCode" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:159:40: warning: no header providing "o2::aod::mcparticle::McCollisionId" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:171:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:183:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:193:73: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:194:44: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:195:46: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:196:46: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:196:59: warning: no header providing "o2::aod::TracksCov" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:196:110: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:197:69: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:203:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:211:100: warning: no header providing "o2::constants::physics::Pdg" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:215:13: warning: member 'nK0sShortDaught' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] DPG/Tasks/ITS/filterTracks.cxx:217:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:231:41: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:282:20: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:314:73: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:337:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:377:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] DPG/Tasks/ITS/filterTracks.cxx:396:29: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/ITS/itsImpParStudies.cxx` ```text DPG/Tasks/ITS/itsImpParStudies.cxx:53:8: warning: constructor does not initialize these fields: isPIDPionApplied, isPIDKaonApplied, isPIDProtonApplied, ccdb, mRunNumber [cppcoreguidelines-pro-type-member-init] ``` #### `DPG/Tasks/MFT/aQCMFTTracks.cxx` ```text DPG/Tasks/MFT/aQCMFTTracks.cxx:19:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] DPG/Tasks/MFT/aQCMFTTracks.cxx:20:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] DPG/Tasks/MFT/aQCMFTTracks.cxx:21:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] DPG/Tasks/MFT/aQCMFTTracks.cxx:23:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] DPG/Tasks/MFT/aQCMFTTracks.cxx:24:1: warning: included header LHCConstants.h is not used directly [misc-include-cleaner] DPG/Tasks/MFT/aQCMFTTracks.cxx:25:1: warning: included header ROFRecord.h is not used directly [misc-include-cleaner] DPG/Tasks/MFT/aQCMFTTracks.cxx:26:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] DPG/Tasks/MFT/aQCMFTTracks.cxx:29:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] DPG/Tasks/MFT/aQCMFTTracks.cxx:30:1: warning: included header TimingInfo.h is not used directly [misc-include-cleaner] DPG/Tasks/MFT/aQCMFTTracks.cxx:33:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] DPG/Tasks/MFT/aQCMFTTracks.cxx:34:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] DPG/Tasks/MFT/aQCMFTTracks.cxx:43:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] DPG/Tasks/MFT/aQCMFTTracks.cxx:44:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/MFT/aQCMFTTracks.cxx:46:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/MFT/aQCMFTTracks.cxx:49:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/MFT/aQCMFTTracks.cxx:57:49: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] DPG/Tasks/MFT/aQCMFTTracks.cxx:93:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] DPG/Tasks/MFT/aQCMFTTracks.cxx:110:9: warning: uninitialized record type: 'clsSize' [cppcoreguidelines-pro-type-member-init] DPG/Tasks/MFT/aQCMFTTracks.cxx:110:14: warning: no header providing "std::array" is directly included [misc-include-cleaner] DPG/Tasks/MFT/aQCMFTTracks.cxx:153:9: warning: uninitialized record type: 'clsSize' [cppcoreguidelines-pro-type-member-init] DPG/Tasks/MFT/aQCMFTTracks.cxx:180:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] DPG/Tasks/MFT/aQCMFTTracks.cxx:188:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/Monitor/MC/taskMcSimpleQC.cxx` ```text DPG/Tasks/Monitor/MC/taskMcSimpleQC.cxx:17:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] DPG/Tasks/Monitor/MC/taskMcSimpleQC.cxx:32:101: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] DPG/Tasks/Monitor/MC/taskMcSimpleQC.cxx:68:7: warning: no header providing "uint" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/TOF/tofOfflineCalib.cxx` ```text DPG/Tasks/TOF/tofOfflineCalib.cxx:37:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:37:31: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:37:44: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:38:47: warning: no header providing "o2::aod::EvTimeTOFOnly" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:42:31: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:45:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:47:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:47:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:50:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:59:8: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:59:19: warning: no header providing "TH2" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:61:19: warning: no header providing "TH1" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:67:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:69:57: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:69:84: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:69:111: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:70:50: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:97:24: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:98:48: warning: no header providing "o2::pid::tof::ExpTimes" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:98:62: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:100:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:113:21: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:115:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:116:55: warning: no header providing "rand_r" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:116:97: warning: no header providing "RAND_MAX" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:143:13: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:145:31: warning: no header providing "Form" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:149:79: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:153:5: warning: no header providing "int8_t" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofOfflineCalib.cxx:161:92: warning: no header providing "fabs" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/TOF/tofSkimsTableCreator.cxx` ```text DPG/Tasks/TOF/tofSkimsTableCreator.cxx:23:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] DPG/Tasks/TOF/tofSkimsTableCreator.cxx:36:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofSkimsTableCreator.cxx:36:31: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofSkimsTableCreator.cxx:36:44: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofSkimsTableCreator.cxx:37:47: warning: no header providing "o2::aod::EvTimeTOFOnly" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofSkimsTableCreator.cxx:39:31: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofSkimsTableCreator.cxx:42:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofSkimsTableCreator.cxx:46:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofSkimsTableCreator.cxx:52:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofSkimsTableCreator.cxx:54:57: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofSkimsTableCreator.cxx:54:84: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofSkimsTableCreator.cxx:54:111: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofSkimsTableCreator.cxx:78:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofSkimsTableCreator.cxx:88:21: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofSkimsTableCreator.cxx:91:55: warning: no header providing "rand_r" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofSkimsTableCreator.cxx:91:97: warning: no header providing "RAND_MAX" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofSkimsTableCreator.cxx:112:5: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofSkimsTableCreator.cxx:135:5: warning: no header providing "int8_t" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/TOF/tofSkimsTableCreator.h` ```text DPG/Tasks/TOF/tofSkimsTableCreator.h:48:52: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] DPG/Tasks/TOF/tofSkimsTableCreator.h:51:52: warning: no header providing "int8_t" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/TPC/tpcSkimsTableCreator.cxx` ```text DPG/Tasks/TPC/tpcSkimsTableCreator.cxx:74:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] DPG/Tasks/TPC/tpcSkimsTableCreator.cxx:107:15: warning: member 'nSigmaTofUnmatchedEqualityTolerance' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] DPG/Tasks/TPC/tpcSkimsTableCreator.cxx:502:112: warning: no header providing "TObject" is directly included [misc-include-cleaner] DPG/Tasks/TPC/tpcSkimsTableCreator.cxx:567:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `DPG/Tasks/TPC/tpcSkimsTableCreator.h` ```text DPG/Tasks/TPC/tpcSkimsTableCreator.h:23:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] ``` #### `DPG/Tasks/TPC/tpcTreeCreatorLight.cxx` ```text DPG/Tasks/TPC/tpcTreeCreatorLight.cxx:21:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] DPG/Tasks/TPC/tpcTreeCreatorLight.cxx:25:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] DPG/Tasks/TPC/tpcTreeCreatorLight.cxx:28:1: warning: included header HistogramRegistry.h is not used directly [misc-include-cleaner] DPG/Tasks/TPC/tpcTreeCreatorLight.cxx:31:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] DPG/Tasks/TPC/tpcTreeCreatorLight.cxx:45:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] DPG/Tasks/TPC/tpcTreeCreatorLight.cxx:45:31: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] DPG/Tasks/TPC/tpcTreeCreatorLight.cxx:45:44: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] DPG/Tasks/TPC/tpcTreeCreatorLight.cxx:46:31: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] DPG/Tasks/TPC/tpcTreeCreatorLight.cxx:49:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] DPG/Tasks/TPC/tpcTreeCreatorLight.cxx:52:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] DPG/Tasks/TPC/tpcTreeCreatorLight.cxx:91:53: warning: no header providing "int64_t" is directly included [misc-include-cleaner] DPG/Tasks/TPC/tpcTreeCreatorLight.cxx:178:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] DPG/Tasks/TPC/tpcTreeCreatorLight.cxx:181:74: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/TPC/tpcTreeCreatorLight.h` ```text DPG/Tasks/TPC/tpcTreeCreatorLight.h:20:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] DPG/Tasks/TPC/tpcTreeCreatorLight.h:23:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] DPG/Tasks/TPC/tpcTreeCreatorLight.h:26:16: warning: no header providing "BIT" is directly included [misc-include-cleaner] ``` #### `DPG/Tasks/TPC/utilsTpcSkimsTableCreator.h` ```text DPG/Tasks/TPC/utilsTpcSkimsTableCreator.h:126:28: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] ``` ### EventFiltering #### `EventFiltering/PWGCF/CFFilterAll.cxx` ```text EventFiltering/PWGCF/CFFilterAll.cxx:40:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:41:1: warning: included header TMath.h is not used directly [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:72:7: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:135:8: warning: constructor does not initialize these fields: ccdb, keepEventTightLimit, keepEventLooseLimit, signalTightLimit, signalLooseLimit [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGCF/CFFilterAll.cxx:137:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:152:18: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:269:63: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:305:58: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:310:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:315:27: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:322:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:327:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:363:78: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:364:27: warning: no header providing "TH1" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:370:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:372:29: warning: no header providing "TH2" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:1045:29: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:1062:80: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:1065:85: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:1068:87: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:1230:19: warning: no header providing "std::cos" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:1230:46: warning: no header providing "std::sin" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:1234:17: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:1244:15: warning: no header providing "ROOT::Math::PxPyPzEVector" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:1260:17: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:1283:34: warning: no header providing "o2::soa::Attach" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:1379:94: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:1413:94: warning: no header providing "o2::constants::physics::MassKaonCharged" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:1447:96: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:1481:98: warning: no header providing "o2::constants::physics::MassDeuteron" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:1688:26: warning: no header providing "getTrackParCov" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:1700:30: warning: no header providing "std::cos" is directly included [misc-include-cleaner] EventFiltering/PWGCF/CFFilterAll.cxx:1741:88: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] ``` #### `EventFiltering/PWGEM/EMPhotonFilter.cxx` ```text EventFiltering/PWGEM/EMPhotonFilter.cxx:20:1: warning: included header TriggerRecord.h is not used directly [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilter.cxx:27:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilter.cxx:35:54: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilter.cxx:59:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilter.cxx:63:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilter.cxx:97:48: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilter.cxx:99:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilter.cxx:101:32: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilter.cxx:101:43: warning: no header providing "TH1" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilter.cxx:101:112: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilter.cxx:164:21: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilter.cxx:177:13: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilter.cxx:190:47: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilter.cxx:240:23: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilter.cxx:367:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `EventFiltering/PWGEM/EMPhotonFilterQC.cxx` ```text EventFiltering/PWGEM/EMPhotonFilterQC.cxx:15:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilterQC.cxx:20:1: warning: included header CaloClusters.h is not used directly [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilterQC.cxx:21:1: warning: included header TriggerRecord.h is not used directly [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilterQC.cxx:23:1: warning: included header V0PhotonCut.h is not used directly [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilterQC.cxx:24:1: warning: included header CutsLibrary.h is not used directly [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilterQC.cxx:34:54: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilterQC.cxx:40:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilterQC.cxx:47:39: warning: no header providing "TH1" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilterQC.cxx:47:78: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilterQC.cxx:57:18: warning: no header providing "TH2" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilterQC.cxx:57:79: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilterQC.cxx:57:102: warning: no header providing "TMath::TwoPi" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilterQC.cxx:60:117: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilterQC.cxx:69:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilterQC.cxx:69:15: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilterQC.cxx:79:47: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilterQC.cxx:82:31: warning: no header providing "abs" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilterQC.cxx:104:23: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilterQC.cxx:123:20: warning: no header providing "std::find" is directly included [misc-include-cleaner] EventFiltering/PWGEM/EMPhotonFilterQC.cxx:153:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `EventFiltering/PWGEM/HeavyNeutralMesonFilter.cxx` ```text EventFiltering/PWGEM/HeavyNeutralMesonFilter.cxx:125:8: warning: constructor does not initialize these fields: colContainsPCMOmega, colContainsEMCOmega, colContainsPCMEtaPrime [cppcoreguidelines-pro-type-member-init] ``` #### `EventFiltering/PWGEM/globalDimuonFilter.cxx` ```text EventFiltering/PWGEM/globalDimuonFilter.cxx:15:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:31:1: warning: included header MatchGlobalFwd.h is not used directly [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:33:1: warning: included header TrackParam.h is not used directly [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:34:1: warning: included header TrackFwd.h is not used directly [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:36:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:54:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGEM/globalDimuonFilter.cxx:55:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:58:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:64:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:133:45: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:134:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:135:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:139:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:165:20: warning: no header providing "o2::base::GeometryManager" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:177:42: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:177:53: warning: no header providing "TH1" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:177:118: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:188:69: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:192:82: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:192:103: warning: no header providing "M_PI" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:212:88: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:217:13: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:221:51: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:361:22: warning: no header providing "o2::dataformats::GlobalFwdTrack" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:365:21: warning: no header providing "o2::math_utils::bringTo02Pi" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:378:47: warning: no header providing "std::sin" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:378:62: warning: no header providing "std::atan" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:378:72: warning: no header providing "std::exp" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:383:21: warning: no header providing "o2::math_utils::bringToPMPi" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:385:14: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:385:24: warning: no header providing "std::pow" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:392:24: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:405:37: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:760:19: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:887:84: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:890:83: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:893:87: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] EventFiltering/PWGEM/globalDimuonFilter.cxx:1057:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `EventFiltering/PWGHF/HFFilter.cxx` ```text EventFiltering/PWGHF/HFFilter.cxx:85:8: warning: constructor does not initialize these fields: ccdb, lut [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGHF/HFFilter.cxx:453:85: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] EventFiltering/PWGHF/HFFilter.cxx:454:98: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] EventFiltering/PWGHF/HFFilter.cxx:455:106: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] EventFiltering/PWGHF/HFFilter.cxx:682:23: warning: uninitialized record type: 'dca2Prong' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGHF/HFFilter.cxx:921:13: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGHF/HFFilter.cxx:965:13: warning: uninitialized record type: 'v0Cand' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGHF/HFFilter.cxx:1081:13: warning: uninitialized record type: 'dcaInfoBachProton' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGHF/HFFilter.cxx:1448:25: warning: uninitialized record type: 'dca3Prong' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGHF/HFFilter.cxx:1626:13: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGHF/HFFilter.cxx:1675:13: warning: uninitialized record type: 'v0Cand' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGHF/HFFilter.cxx:1832:11: warning: uninitialized record type: 'cascCand' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGHF/HFFilter.cxx:1854:11: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGHF/HFFilter.cxx:1879:13: warning: uninitialized record type: 'dcaInfoBach' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGHF/HFFilter.cxx:1923:17: warning: uninitialized record type: 'dcaInfoBachSecond' [cppcoreguidelines-pro-type-member-init] ``` #### `EventFiltering/PWGHF/HFFilterCharmHadronSignals.cxx` ```text EventFiltering/PWGHF/HFFilterCharmHadronSignals.cxx:65:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `EventFiltering/PWGHF/HFFilterHelpers.h` ```text EventFiltering/PWGHF/HFFilterHelpers.h:937:9: warning: variable 'ptMin' is not initialized [cppcoreguidelines-init-variables] EventFiltering/PWGHF/HFFilterHelpers.h:937:16: warning: variable 'ptMax' is not initialized [cppcoreguidelines-init-variables] EventFiltering/PWGHF/HFFilterHelpers.h:937:23: warning: variable 'ptThresholdPidStrategy' is not initialized [cppcoreguidelines-init-variables] EventFiltering/PWGHF/HFFilterHelpers.h:938:3: warning: uninitialized record type: 'nSigmaCuts' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGHF/HFFilterHelpers.h:1923:30: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] EventFiltering/PWGHF/HFFilterHelpers.h:2135:3: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] EventFiltering/PWGHF/HFFilterHelpers.h:2665:3: warning: uninitialized record type: 'dcaInfoNeg' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGHF/HFFilterHelpers.h:2665:3: warning: uninitialized record type: 'dcaInfoPos' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGHF/HFFilterHelpers.h:2734:3: warning: uninitialized record type: 'dcaInfoV0' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGHF/HFFilterHelpers.h:2786:3: warning: uninitialized record type: 'dcaInfoBach' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGHF/HFFilterHelpers.h:2791:3: warning: uninitialized record type: 'v0Cand' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGHF/HFFilterHelpers.h:2859:3: warning: uninitialized record type: 'dcaInfoCasc' [cppcoreguidelines-pro-type-member-init] ``` #### `EventFiltering/PWGHF/HFFilterPrepareMLSamples.cxx` ```text EventFiltering/PWGHF/HFFilterPrepareMLSamples.cxx:61:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `EventFiltering/PWGJE/fullJetFilter.cxx` ```text EventFiltering/PWGJE/fullJetFilter.cxx:18:1: warning: included header string_view is not used directly [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:25:1: warning: included header Geometry.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:26:1: warning: included header Track.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:31:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:32:1: warning: included header HistogramRegistry.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:34:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:35:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:40:1: warning: included header JetFinder.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:41:1: warning: included header FastJetUtilities.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:49:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGJE/fullJetFilter.cxx:50:30: warning: no header providing "o2::aod::JCollision" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:51:34: warning: no header providing "o2::aod::JBCs" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:52:55: warning: no header providing "o2::aod::JClusters" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:93:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:95:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:95:13: warning: no header providing "TH1D" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:96:13: warning: no header providing "TH2F" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:147:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:182:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:184:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:188:5: warning: no header providing "Int_t" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:189:5: warning: no header providing "Float_t" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:200:61: warning: no header providing "Form" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:266:12: warning: no header providing "o2::aod::EMCALClusterDefinition" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:267:58: warning: no header providing "o2::aod::jcluster::definition" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:271:3: warning: no header providing "Bool_t" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:291:12: warning: no header providing "std::vector" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:292:12: warning: no header providing "std::stringstream" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:317:38: warning: no header providing "o2::emcal::AcceptanceType_t" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:325:34: warning: no header providing "FLT_MAX" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:437:9: warning: no header providing "TVector2" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:463:63: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:468:16: warning: no header providing "TH2" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:470:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:538:24: warning: no header providing "std::is_same" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:574:14: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:625:7: warning: no header providing "int64_t" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:627:12: warning: no header providing "std::map" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:648:16: warning: no header providing "std::cout" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:648:109: warning: no header providing "std::endl" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:654:5: warning: uninitialized record type: 'keepEvent' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGJE/fullJetFilter.cxx:655:10: warning: no header providing "std::fill" is directly included [misc-include-cleaner] EventFiltering/PWGJE/fullJetFilter.cxx:698:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `EventFiltering/PWGJE/jetFilter.cxx` ```text EventFiltering/PWGJE/jetFilter.cxx:16:1: warning: included header FastJetUtilities.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:17:1: warning: included header JetBkgSubUtils.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:19:1: warning: included header JetFinder.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:20:1: warning: included header EMCALClusters.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:24:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:25:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:26:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:34:1: warning: included header Track.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:46:8: warning: constructor does not initialize these fields: triggerJetR [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGJE/jetFilter.cxx:62:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:64:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:82:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:82:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:88:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:88:13: warning: no header providing "TH1D" is directly included [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:93:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:97:43: warning: no header providing "o2::aod::jtrack::eta" is directly included [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:97:98: warning: no header providing "o2::aod::jtrack::pt" is directly included [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:101:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:107:54: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:142:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:295:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] EventFiltering/PWGJE/jetFilter.cxx:297:58: warning: no header providing "o2::aod::BkgChargedRhos" is directly included [misc-include-cleaner] ``` #### `EventFiltering/PWGJE/jetHFFilter.cxx` ```text EventFiltering/PWGJE/jetHFFilter.cxx:14:1: warning: included header TMath.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/jetHFFilter.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/jetHFFilter.cxx:23:1: warning: included header Track.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/jetHFFilter.cxx:25:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/jetHFFilter.cxx:26:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/jetHFFilter.cxx:28:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/jetHFFilter.cxx:30:1: warning: included header JetFinder.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/jetHFFilter.cxx:31:1: warning: included header FastJetUtilities.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/jetHFFilter.cxx:32:1: warning: included header JetBkgSubUtils.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/jetHFFilter.cxx:33:1: warning: included header EMCALClusters.h is not used directly [misc-include-cleaner] EventFiltering/PWGJE/jetHFFilter.cxx:54:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] EventFiltering/PWGJE/jetHFFilter.cxx:56:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] EventFiltering/PWGJE/jetHFFilter.cxx:65:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] EventFiltering/PWGJE/jetHFFilter.cxx:67:94: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] EventFiltering/PWGJE/jetHFFilter.cxx:114:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `EventFiltering/PWGLF/filterdoublephi.cxx` ```text EventFiltering/PWGLF/filterdoublephi.cxx:19:1: warning: included header ReducedDoublePhiTables.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:21:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:23:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:29:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:30:1: warning: included header CcdbApi.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:31:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:37:1: warning: included header BetheBlochAleph.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:40:1: warning: included header Boost.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:41:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:42:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:44:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:46:1: warning: included header Logger.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:48:1: warning: included header iostream is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:60:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:105:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:109:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:109:13: warning: no header providing "TH1D" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:111:78: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:116:32: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:118:43: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:120:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:172:12: warning: variable 'pt1' is not initialized [cppcoreguidelines-init-variables] EventFiltering/PWGLF/filterdoublephi.cxx:172:17: warning: variable 'pt2' is not initialized [cppcoreguidelines-init-variables] EventFiltering/PWGLF/filterdoublephi.cxx:172:22: warning: variable 'pz1' is not initialized [cppcoreguidelines-init-variables] EventFiltering/PWGLF/filterdoublephi.cxx:172:27: warning: variable 'pz2' is not initialized [cppcoreguidelines-init-variables] EventFiltering/PWGLF/filterdoublephi.cxx:172:32: warning: variable 'p1' is not initialized [cppcoreguidelines-init-variables] EventFiltering/PWGLF/filterdoublephi.cxx:172:36: warning: variable 'p2' is not initialized [cppcoreguidelines-init-variables] EventFiltering/PWGLF/filterdoublephi.cxx:172:40: warning: variable 'angle' is not initialized [cppcoreguidelines-init-variables] EventFiltering/PWGLF/filterdoublephi.cxx:186:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:192:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:194:29: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:208:48: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:214:82: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:218:79: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterdoublephi.cxx:238:88: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] ``` #### `EventFiltering/PWGLF/filterf1proton.cxx` ```text EventFiltering/PWGLF/filterf1proton.cxx:19:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:23:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:24:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:26:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:27:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:34:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:37:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:39:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:44:1: warning: included header Track.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:45:1: warning: included header TrackParametrization.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:49:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:51:1: warning: included header TMath.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:55:1: warning: included header iostream is not used directly [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:64:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGLF/filterf1proton.cxx:66:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:68:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:149:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:149:13: warning: no header providing "TH1D" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:151:76: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:168:32: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:175:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:190:43: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:190:70: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:190:97: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:201:17: warning: no header providing "o2::base::Propagator" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:210:29: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:412:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:423:36: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:429:19: warning: no header providing "std::cos" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:429:46: warning: no header providing "std::sin" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:433:17: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:445:10: warning: no header providing "std::map" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:446:43: warning: no header providing "TH1F" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:814:24: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:818:18: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] EventFiltering/PWGLF/filterf1proton.cxx:824:38: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] ``` #### `EventFiltering/PWGLF/nucleiFilter.cxx` ```text EventFiltering/PWGLF/nucleiFilter.cxx:17:1: warning: included header Vtx3BodyTables.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:31:1: warning: included header ParameterContainers.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:33:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:35:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:40:1: warning: included header Track.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:43:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:54:19: warning: no header providing "o2::common::core::MetadataHelper" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:61:23: warning: no header providing "std::array" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:62:23: warning: no header providing "o2::constants::physics::MassDeuteron" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:62:57: warning: no header providing "o2::constants::physics::MassTriton" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:63:23: warning: no header providing "o2::constants::physics::MassHelium3" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:90:17: warning: no header providing "TH2" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:95:8: warning: constructor does not initialize these fields: mRunNumber, mBz, ccdb, TriggerType [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGLF/nucleiFilter.cxx:97:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:100:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:114:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:124:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:127:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:134:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:167:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:168:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:168:13: warning: no header providing "TH1D" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:170:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:174:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:176:54: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:187:42: warning: no header providing "Form" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:192:10: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:197:42: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:297:46: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:310:29: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:397:111: warning: no header providing "o2::constants::physics::MassPiMinus" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:398:12: warning: no header providing "size_t" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:541:7: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGLF/nucleiFilter.cxx:574:24: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:578:188: warning: no header providing "o2::constants::physics::MassHyperTriton" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:583:185: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] EventFiltering/PWGLF/nucleiFilter.cxx:583:221: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] ``` #### `EventFiltering/PWGLF/strangenessFilter.cxx` ```text EventFiltering/PWGLF/strangenessFilter.cxx:24:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:26:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:29:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:35:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:37:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:51:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:62:19: warning: no header providing "std::vector" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:62:31: warning: no header providing "std::string" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:71:8: warning: constructor does not initialize these fields: ccdb, mMeanMultT0C, mMeanMultT0A [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGLF/strangenessFilter.cxx:74:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:77:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:77:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:82:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:82:13: warning: no header providing "TH1D" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:83:13: warning: no header providing "TH1F" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:87:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:88:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:97:18: warning: no header providing "int16_t" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:98:18: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:194:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:205:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:237:28: warning: no header providing "TMath::Power" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:291:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:360:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:369:38: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:373:75: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:543:29: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:573:22: warning: no header providing "std::array" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:573:28: warning: no header providing "int64_t" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:583:62: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:587:70: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:598:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:605:5: warning: no header providing "Bool_t" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:630:19: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:723:18: warning: no header providing "TMath::Cos" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:769:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:1069:5: warning: uninitialized record type: 'ThrdPt' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGLF/strangenessFilter.cxx:1121:12: warning: no header providing "std::set" is directly included [misc-include-cleaner] EventFiltering/PWGLF/strangenessFilter.cxx:1210:7: warning: uninitialized record type: 'momenta' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGLF/strangenessFilter.cxx:1211:7: warning: uninitialized record type: 'nsigma' [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGLF/strangenessFilter.cxx:1245:11: warning: uninitialized record type: 'pVec' [cppcoreguidelines-pro-type-member-init] ``` #### `EventFiltering/PWGMM/multFilter.cxx` ```text EventFiltering/PWGMM/multFilter.cxx:18:1: warning: included header Digit.h is not used directly [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:24:1: warning: included header Track.h is not used directly [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:33:19: warning: no header providing "std::vector" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:38:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGMM/multFilter.cxx:50:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:74:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:80:54: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:82:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:94:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:96:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:99:28: warning: no header providing "o2::base::NameConf" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:126:44: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:154:76: warning: no header providing "M_PI" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:160:20: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] EventFiltering/PWGMM/multFilter.cxx:164:27: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] EventFiltering/PWGMM/multFilter.cxx:166:26: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] EventFiltering/PWGMM/multFilter.cxx:169:10: warning: no header providing "std::array" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:171:32: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:171:43: warning: no header providing "TH1" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:172:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:290:12: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:291:39: warning: no header providing "o2::fit::Triggers" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:294:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] EventFiltering/PWGMM/multFilter.cxx:294:29: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] EventFiltering/PWGMM/multFilter.cxx:300:17: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:321:12: warning: no header providing "Int_t" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:363:74: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:367:71: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:371:71: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] EventFiltering/PWGMM/multFilter.cxx:403:9: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] ``` #### `EventFiltering/PWGUD/diffractionBCFilter.cxx` ```text EventFiltering/PWGUD/diffractionBCFilter.cxx:31:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:34:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:38:20: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:38:30: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:38:47: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:40:30: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:40:40: warning: no header providing "o2::aod::BcSels" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:40:53: warning: no header providing "o2::aod::Run3MatchedToBCSparse" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:42:30: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:42:43: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:42:61: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:42:77: warning: no header providing "o2::aod::TrackSelection" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:44:20: warning: no header providing "o2::aod::AmbiguousTracks" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:46:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:46:61: warning: no header providing "o2::aod::ambiguous::trackId" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:47:17: warning: no header providing "o2::aod::AmbiguousFwdTracks" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:47:67: warning: no header providing "o2::aod::ambiguous::fwdtrackId" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:49:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:52:54: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:65:10: warning: no header providing "std::map" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:65:14: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:65:29: warning: no header providing "std::vector" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:65:36: warning: no header providing "int32_t" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:66:14: warning: variable 'closestBC' is not initialized [cppcoreguidelines-init-variables] EventFiltering/PWGUD/diffractionBCFilter.cxx:71:20: warning: no header providing "TH1" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:71:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:81:55: warning: no header providing "o2::constants::lhc::LHCBunchSpacingNS" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:119:9: warning: variable 'indBCToSave' is not initialized [cppcoreguidelines-init-variables] EventFiltering/PWGUD/diffractionBCFilter.cxx:140:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:142:59: warning: no header providing "o2::aod::FwdTracks" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:203:9: warning: variable 'indBCToSave' is not initialized [cppcoreguidelines-init-variables] EventFiltering/PWGUD/diffractionBCFilter.cxx:236:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:277:30: warning: no header providing "o2::aod::pidTPCFullEl" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:277:49: warning: no header providing "o2::aod::pidTPCFullMu" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:277:68: warning: no header providing "o2::aod::pidTPCFullPi" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:277:87: warning: no header providing "o2::aod::pidTPCFullKa" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:277:106: warning: no header providing "o2::aod::pidTPCFullPr" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:278:30: warning: no header providing "o2::aod::TOFSignal" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:278:46: warning: no header providing "o2::aod::pidTOFFullEl" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:278:65: warning: no header providing "o2::aod::pidTOFFullMu" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:278:84: warning: no header providing "o2::aod::pidTOFFullPi" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:278:103: warning: no header providing "o2::aod::pidTOFFullKa" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:278:122: warning: no header providing "o2::aod::pidTOFFullPr" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:290:21: warning: no header providing "o2::aod::Zdcs" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:291:21: warning: no header providing "o2::aod::FT0s" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:292:21: warning: no header providing "o2::aod::FV0As" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:293:21: warning: no header providing "o2::aod::FDDs" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionBCFilter.cxx:303:9: warning: variable 'isDGBC' is not initialized [cppcoreguidelines-init-variables] ``` #### `EventFiltering/PWGUD/diffractionFilter.cxx` ```text EventFiltering/PWGUD/diffractionFilter.cxx:31:8: warning: constructor does not initialize these fields: collCounter, verbose [cppcoreguidelines-pro-type-member-init] EventFiltering/PWGUD/diffractionFilter.cxx:34:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:37:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:39:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:64:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:65:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:69:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:83:57: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:88:30: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] EventFiltering/PWGUD/diffractionFilter.cxx:88:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] EventFiltering/PWGUD/diffractionFilter.cxx:123:20: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:123:30: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:125:30: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:125:53: warning: no header providing "o2::aod::Run3MatchedToBCSparse" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:130:30: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:130:43: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:130:61: warning: no header providing "o2::aod::TrackSelection" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:133:20: warning: no header providing "o2::aod::FwdTracks" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:136:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:136:30: warning: no header providing "requireGlobalTrackInFilter" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:137:29: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:145:21: warning: no header providing "o2::aod::Zdcs" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:146:21: warning: no header providing "o2::aod::FT0s" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:147:21: warning: no header providing "o2::aod::FV0As" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:148:21: warning: no header providing "o2::aod::FDDs" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:155:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:158:46: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:209:25: warning: no header providing "std::vector" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:217:20: warning: no header providing "TH2" is directly included [misc-include-cleaner] EventFiltering/PWGUD/diffractionFilter.cxx:238:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] ``` #### `EventFiltering/cefpTask.cxx` ```text EventFiltering/cefpTask.cxx:13:1: warning: included header format.h is not used directly [misc-include-cleaner] EventFiltering/cefpTask.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] EventFiltering/cefpTask.cxx:32:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] EventFiltering/cefpTask.cxx:33:1: warning: included header LHCConstants.h is not used directly [misc-include-cleaner] EventFiltering/cefpTask.cxx:34:1: warning: included header InteractionRecord.h is not used directly [misc-include-cleaner] EventFiltering/cefpTask.cxx:35:1: warning: included header Scalers.h is not used directly [misc-include-cleaner] EventFiltering/cefpTask.cxx:41:117: warning: no header providing "o2::framework::VariantType" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:205:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:213:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:214:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:216:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:233:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:242:35: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:242:46: warning: no header providing "TH1" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:242:98: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:244:49: warning: no header providing "TH2" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:274:12: warning: no header providing "o2::framework::ProcessingContext" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:278:42: warning: no header providing "o2::framework::TableConsumer" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:297:31: warning: no header providing "std::static_pointer_cast" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:297:58: warning: no header providing "arrow::NumericArray" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:297:78: warning: no header providing "arrow::Int32Type" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:298:31: warning: no header providing "std::static_pointer_cast" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:298:78: warning: no header providing "arrow::FloatType" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:300:28: warning: no header providing "std::static_pointer_cast" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:300:75: warning: no header providing "arrow::UInt64Type" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:313:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:314:22: warning: no header providing "std::array" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:314:28: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:336:29: warning: no header providing "BIT" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:343:35: warning: no header providing "std::static_pointer_cast" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:343:62: warning: no header providing "arrow::BooleanArray" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:420:15: warning: no header providing "o2::framework::InputSpec" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:431:12: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:433:110: warning: no header providing "o2::framework::Lifetime" is directly included [misc-include-cleaner] EventFiltering/cefpTask.cxx:449:3: warning: no header providing "o2::framework::DataProcessorSpec" is directly included [misc-include-cleaner] ``` #### `EventFiltering/filterTables.h` ```text EventFiltering/filterTables.h:31:18: warning: no header providing "std::same_as" is directly included [misc-include-cleaner] EventFiltering/filterTables.h:31:63: warning: no header providing "std::decay_t" is directly included [misc-include-cleaner] ``` #### `EventFiltering/macros/cefpOutputChecker.C` ```text EventFiltering/macros/cefpOutputChecker.C:16:29: warning: no header providing "std::string" is directly included [misc-include-cleaner] EventFiltering/macros/cefpOutputChecker.C:19:21: warning: do not use C-style cast to convert between unrelated types [cppcoreguidelines-pro-type-cstyle-cast] EventFiltering/macros/cefpOutputChecker.C:20:21: warning: do not use C-style cast to convert between unrelated types [cppcoreguidelines-pro-type-cstyle-cast] EventFiltering/macros/cefpOutputChecker.C:23:37: error: member access into incomplete type 'TH1' [clang-diagnostic-error] EventFiltering/macros/cefpOutputChecker.C:24:37: error: member access into incomplete type 'TH1' [clang-diagnostic-error] EventFiltering/macros/cefpOutputChecker.C:25:13: error: member access into incomplete type 'TH1' [clang-diagnostic-error] EventFiltering/macros/cefpOutputChecker.C:26:13: error: member access into incomplete type 'TH1' [clang-diagnostic-error] EventFiltering/macros/cefpOutputChecker.C:30:23: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] EventFiltering/macros/cefpOutputChecker.C:30:45: warning: no header providing "Form" is directly included [misc-include-cleaner] EventFiltering/macros/cefpOutputChecker.C:33:5: warning: no header providing "ULong64_t" is directly included [misc-include-cleaner] EventFiltering/macros/cefpOutputChecker.C:33:15: warning: variable 'fCefpSelected' is not initialized [cppcoreguidelines-init-variables] EventFiltering/macros/cefpOutputChecker.C:33:30: warning: variable 'fCefpTriggered' is not initialized [cppcoreguidelines-init-variables] EventFiltering/macros/cefpOutputChecker.C:38:17: error: member access into incomplete type 'TH1' [clang-diagnostic-error] EventFiltering/macros/cefpOutputChecker.C:39:17: error: member access into incomplete type 'TH1' [clang-diagnostic-error] EventFiltering/macros/cefpOutputChecker.C:42:21: error: member access into incomplete type 'TH1' [clang-diagnostic-error] EventFiltering/macros/cefpOutputChecker.C:44:21: error: member access into incomplete type 'TH1' [clang-diagnostic-error] EventFiltering/macros/cefpOutputChecker.C:47:19: error: member access into incomplete type 'TH1' [clang-diagnostic-error] EventFiltering/macros/cefpOutputChecker.C:47:36: error: member access into incomplete type 'TH1' [clang-diagnostic-error] EventFiltering/macros/cefpOutputChecker.C:49:19: error: member access into incomplete type 'TH1' [clang-diagnostic-error] EventFiltering/macros/cefpOutputChecker.C:49:36: error: member access into incomplete type 'TH1' [clang-diagnostic-error] EventFiltering/macros/cefpOutputChecker.C:54:13: error: member access into incomplete type 'TH1' [clang-diagnostic-error] EventFiltering/macros/cefpOutputChecker.C:55:13: error: member access into incomplete type 'TH1' [clang-diagnostic-error] EventFiltering/macros/cefpOutputChecker.C:56:13: error: member access into incomplete type 'TH1' [clang-diagnostic-error] EventFiltering/macros/cefpOutputChecker.C:57:13: error: member access into incomplete type 'TH1' [clang-diagnostic-error] EventFiltering/macros/cefpOutputChecker.C:58:13: error: member access into incomplete type 'TH1' [clang-diagnostic-error] EventFiltering/macros/cefpOutputChecker.C:59:13: error: member access into incomplete type 'TH1' [clang-diagnostic-error] ``` #### `EventFiltering/macros/checkBCRange.C` ```text EventFiltering/macros/checkBCRange.C:35:60: warning: no header providing "Form" is directly included [misc-include-cleaner] EventFiltering/macros/checkBCRange.C:43:5: warning: no header providing "ULong64_t" is directly included [misc-include-cleaner] EventFiltering/macros/checkBCRange.C:43:15: warning: variable 'bcstart' is not initialized [cppcoreguidelines-init-variables] EventFiltering/macros/checkBCRange.C:43:24: warning: variable 'bcend' is not initialized [cppcoreguidelines-init-variables] EventFiltering/macros/checkBCRange.C:43:31: warning: variable 'globalBCId' is not initialized [cppcoreguidelines-init-variables] EventFiltering/macros/checkBCRange.C:43:43: warning: variable 'evSelBC' is not initialized [cppcoreguidelines-init-variables] EventFiltering/macros/checkBCRange.C:50:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] EventFiltering/macros/checkBCRange.C:66:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] EventFiltering/macros/checkBCRange.C:80:12: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] EventFiltering/macros/checkBCRange.C:107:29: warning: no header providing "TDirectory" is directly included [misc-include-cleaner] EventFiltering/macros/checkBCRange.C:115:15: warning: variable 'bcstart' is not initialized [cppcoreguidelines-init-variables] EventFiltering/macros/checkBCRange.C:115:24: warning: variable 'bcend' is not initialized [cppcoreguidelines-init-variables] EventFiltering/macros/checkBCRange.C:127:3: warning: no header providing "TList" is directly included [misc-include-cleaner] EventFiltering/macros/checkBCRange.C:127:10: warning: Value stored to 'directoryList' during its initialization is never read [clang-analyzer-deadcode.DeadStores] EventFiltering/macros/checkBCRange.C:127:10: warning: unused variable 'directoryList' [clang-diagnostic-unused-variable] EventFiltering/macros/checkBCRange.C:135:15: warning: variable 'globalBCId' is not initialized [cppcoreguidelines-init-variables] EventFiltering/macros/checkBCRange.C:135:27: warning: variable 'evSelBC' is not initialized [cppcoreguidelines-init-variables] EventFiltering/macros/checkBCRange.C:192:15: warning: variable 'bcstart' is not initialized [cppcoreguidelines-init-variables] EventFiltering/macros/checkBCRange.C:192:24: warning: variable 'bcend' is not initialized [cppcoreguidelines-init-variables] EventFiltering/macros/checkBCRange.C:214:15: warning: variable 'bcId' is not initialized [cppcoreguidelines-init-variables] ``` #### `EventFiltering/macros/checkBCrangesSkimming.C` ```text EventFiltering/macros/checkBCrangesSkimming.C:28:7: warning: no header providing "ULong64_t" is directly included [misc-include-cleaner] EventFiltering/macros/checkBCrangesSkimming.C:42:111: warning: field 'bcEvSel' will be initialized after field 'triMask' [clang-diagnostic-reorder-ctor] EventFiltering/macros/checkBCrangesSkimming.C:43:155: warning: field 'bcEvSel' will be initialized after field 'triMask' [clang-diagnostic-reorder-ctor] EventFiltering/macros/checkBCrangesSkimming.C:80:57: warning: no header providing "std::unique_ptr" is directly included [misc-include-cleaner] EventFiltering/macros/checkBCrangesSkimming.C:114:25: warning: no header providing "BIT" is directly included [misc-include-cleaner] EventFiltering/macros/checkBCrangesSkimming.C:120:36: warning: no header providing "std::min" is directly included [misc-include-cleaner] EventFiltering/macros/checkBCrangesSkimming.C:121:34: warning: no header providing "std::max" is directly included [misc-include-cleaner] EventFiltering/macros/checkBCrangesSkimming.C:144:8: warning: no header providing "std::sort" is directly included [misc-include-cleaner] EventFiltering/macros/checkBCrangesSkimming.C:155:30: warning: comparison of integers of different signs: 'int' and 'size_type' (aka 'unsigned long') [clang-diagnostic-sign-compare] EventFiltering/macros/checkBCrangesSkimming.C:177:6: warning: no header providing "std::string" is directly included [misc-include-cleaner] EventFiltering/macros/checkBCrangesSkimming.C:190:117: error: unknown type name 'string'; did you mean 'std::string'? [clang-diagnostic-error] EventFiltering/macros/checkBCrangesSkimming.C:190:135: error: unknown type name 'string'; did you mean 'std::string'? [clang-diagnostic-error] EventFiltering/macros/checkBCrangesSkimming.C:217:21: warning: comparison of integers of different signs: 'int' and 'size_type' (aka 'unsigned long') [clang-diagnostic-sign-compare] EventFiltering/macros/checkBCrangesSkimming.C:222:20: warning: no header providing "std::find_if" is directly included [misc-include-cleaner] EventFiltering/macros/checkBCrangesSkimming.C:226:20: warning: no header providing "std::find_if" is directly included [misc-include-cleaner] EventFiltering/macros/checkBCrangesSkimming.C:231:20: warning: no header providing "std::find" is directly included [misc-include-cleaner] EventFiltering/macros/checkBCrangesSkimming.C:245:30: warning: comparison of integers of different signs: 'int' and 'size_type' (aka 'unsigned long') [clang-diagnostic-sign-compare] EventFiltering/macros/checkBCrangesSkimming.C:261:17: warning: comparison of integers of different signs: 'int' and 'size_type' (aka 'unsigned long') [clang-diagnostic-sign-compare] EventFiltering/macros/checkBCrangesSkimming.C:287:20: warning: no header providing "std::find_if" is directly included [misc-include-cleaner] EventFiltering/macros/checkBCrangesSkimming.C:291:20: warning: no header providing "std::find_if" is directly included [misc-include-cleaner] EventFiltering/macros/checkBCrangesSkimming.C:331:3: error: unknown type name 'string'; did you mean 'std::string'? [clang-diagnostic-error] EventFiltering/macros/checkBCrangesSkimming.C:368:3: error: unknown type name 'string'; did you mean 'std::string'? [clang-diagnostic-error] EventFiltering/macros/checkBCrangesSkimming.C:403:29: warning: comparison of integers of different signs: 'int' and 'size_type' (aka 'unsigned long') [clang-diagnostic-sign-compare] EventFiltering/macros/checkBCrangesSkimming.C:443:74: warning: unused variable 'maxdeltaBCAO2D' [clang-diagnostic-unused-variable] EventFiltering/macros/checkBCrangesSkimming.C:443:93: warning: unused variable 'maxdeltaBCEvSel' [clang-diagnostic-unused-variable] EventFiltering/macros/checkBCrangesSkimming.C:445:23: warning: comparison of integers of different signs: 'int' and 'size_type' (aka 'unsigned long') [clang-diagnostic-sign-compare] EventFiltering/macros/checkBCrangesSkimming.C:453:32: warning: comparison of integers of different signs: 'int' and 'size_type' (aka 'unsigned long') [clang-diagnostic-sign-compare] EventFiltering/macros/checkBCrangesSkimming.C:469:19: warning: comparison of integers of different signs: 'int' and 'size_type' (aka 'unsigned long') [clang-diagnostic-sign-compare] EventFiltering/macros/checkBCrangesSkimming.C:553:21: warning: comparison of integers of different signs: 'int' and 'size_type' (aka 'unsigned long') [clang-diagnostic-sign-compare] EventFiltering/macros/checkBCrangesSkimming.C:612:9: warning: variable 'hTriggerEff' is not initialized [cppcoreguidelines-init-variables] EventFiltering/macros/checkBCrangesSkimming.C:613:9: warning: variable 'hOriginalSinglesRatio' is not initialized [cppcoreguidelines-init-variables] EventFiltering/macros/checkBCrangesSkimming.C:613:33: warning: variable 'hOriginalDoublesRatio' is not initialized [cppcoreguidelines-init-variables] EventFiltering/macros/checkBCrangesSkimming.C:613:57: warning: variable 'hOriginalMultiplesRatio' is not initialized [cppcoreguidelines-init-variables] EventFiltering/macros/checkBCrangesSkimming.C:614:9: warning: variable 'hSkimmedSinglesRatio' is not initialized [cppcoreguidelines-init-variables] EventFiltering/macros/checkBCrangesSkimming.C:614:32: warning: variable 'hSkimmedDoublesRatio' is not initialized [cppcoreguidelines-init-variables] EventFiltering/macros/checkBCrangesSkimming.C:614:55: warning: variable 'hSkimmedMultiplesRatio' is not initialized [cppcoreguidelines-init-variables] EventFiltering/macros/checkBCrangesSkimming.C:616:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] EventFiltering/macros/checkBCrangesSkimming.C:621:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] EventFiltering/macros/checkBCrangesSkimming.C:624:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] EventFiltering/macros/checkBCrangesSkimming.C:627:29: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] EventFiltering/macros/checkBCrangesSkimming.C:631:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] EventFiltering/macros/checkBCrangesSkimming.C:634:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] EventFiltering/macros/checkBCrangesSkimming.C:637:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] EventFiltering/macros/checkBCrangesSkimming.C:675:29: warning: comparison of integers of different signs: 'int' and 'size_type' (aka 'unsigned long') [clang-diagnostic-sign-compare] ``` #### `EventFiltering/macros/checkSkimming.C` ```text EventFiltering/macros/checkSkimming.C:88:21: warning: comparison of integers of different signs: 'int' and 'size_type' (aka 'unsigned long') [clang-diagnostic-sign-compare] EventFiltering/macros/checkSkimming.C:121:5: warning: no header providing "size_t" is directly included [misc-include-cleaner] EventFiltering/macros/checkSkimming.C:125:19: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] EventFiltering/macros/checkSkimming.C:125:25: warning: no header providing "gDirectory" is directly included [misc-include-cleaner] ``` #### `EventFiltering/macros/getMenu.C` ```text EventFiltering/macros/getMenu.C:22:1: warning: included header set is not used directly [misc-include-cleaner] EventFiltering/macros/getMenu.C:53:17: warning: no header providing "Form" is directly included [misc-include-cleaner] EventFiltering/macros/getMenu.C:55:8: warning: no header providing "std::ifstream" is directly included [misc-include-cleaner] EventFiltering/macros/getMenu.C:69:20: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] EventFiltering/macros/getMenu.C:98:8: warning: no header providing "std::map" is directly included [misc-include-cleaner] EventFiltering/macros/getMenu.C:112:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `EventFiltering/macros/selectivityPlot.C` ```text EventFiltering/macros/selectivityPlot.C:12:46: error: unknown type name 'TString' [clang-diagnostic-error] EventFiltering/macros/selectivityPlot.C:12:54: error: cannot initialize a parameter of type 'int' with an lvalue of type 'const char[28]' [clang-diagnostic-error] EventFiltering/macros/selectivityPlot.C:12:97: error: unknown type name 'TString' [clang-diagnostic-error] EventFiltering/macros/selectivityPlot.C:12:105: error: cannot initialize a parameter of type 'int' with an lvalue of type 'const char[1]' [clang-diagnostic-error] EventFiltering/macros/selectivityPlot.C:14:3: error: unknown type name 'TCanvas' [clang-diagnostic-error] EventFiltering/macros/selectivityPlot.C:14:27: error: unknown type name 'TCanvas' [clang-diagnostic-error] EventFiltering/macros/selectivityPlot.C:15:3: error: use of undeclared identifier 'gStyle' [clang-diagnostic-error] EventFiltering/macros/selectivityPlot.C:16:3: error: use of undeclared identifier 'gStyle' [clang-diagnostic-error] EventFiltering/macros/selectivityPlot.C:33:3: error: unknown type name 'TFile' [clang-diagnostic-error] EventFiltering/macros/selectivityPlot.C:33:21: error: unknown type name 'TFile' [clang-diagnostic-error] EventFiltering/macros/selectivityPlot.C:34:3: error: unknown type name 'TH1D' [clang-diagnostic-error] EventFiltering/macros/selectivityPlot.C:34:22: error: use of undeclared identifier 'TH1D' [clang-diagnostic-error] EventFiltering/macros/selectivityPlot.C:34:27: error: expected expression [clang-diagnostic-error] EventFiltering/macros/selectivityPlot.C:44:5: error: use of undeclared identifier 'std' [clang-diagnostic-error] EventFiltering/macros/selectivityPlot.C:62:3: error: unknown type name 'TLine' [clang-diagnostic-error] EventFiltering/macros/selectivityPlot.C:62:21: error: unknown type name 'TLine' [clang-diagnostic-error] EventFiltering/macros/selectivityPlot.C:65:3: error: unknown type name 'TArrow' [clang-diagnostic-error] EventFiltering/macros/selectivityPlot.C:65:23: error: unknown type name 'TArrow' [clang-diagnostic-error] EventFiltering/macros/selectivityPlot.C:67:3: error: unknown type name 'Int_t' [clang-diagnostic-error] ``` #### `EventFiltering/macros/splitFile.C` ```text EventFiltering/macros/splitFile.C:14:1: warning: included header string is not used directly [misc-include-cleaner] EventFiltering/macros/splitFile.C:36:3: warning: no header providing "TList" is directly included [misc-include-cleaner] EventFiltering/macros/splitFile.C:39:5: warning: no header providing "TDirectoryFile" is directly included [misc-include-cleaner] ``` #### `EventFiltering/macros/uploadOTSobjects.C` ```text EventFiltering/macros/uploadOTSobjects.C:25:1: warning: included header array is not used directly [misc-include-cleaner] EventFiltering/macros/uploadOTSobjects.C:33:11: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] EventFiltering/macros/uploadOTSobjects.C:42:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] EventFiltering/macros/uploadOTSobjects.C:55:10: warning: no header providing "std::pair" is directly included [misc-include-cleaner] EventFiltering/macros/uploadOTSobjects.C:55:15: warning: no header providing "int64_t" is directly included [misc-include-cleaner] EventFiltering/macros/uploadOTSobjects.C:59:49: warning: no header providing "Long64_t" is directly included [misc-include-cleaner] EventFiltering/macros/uploadOTSobjects.C:62:10: warning: no header providing "std::unique_ptr" is directly included [misc-include-cleaner] EventFiltering/macros/uploadOTSobjects.C:81:63: warning: no header providing "Form" is directly included [misc-include-cleaner] EventFiltering/macros/uploadOTSobjects.C:84:7: warning: uninitialized record type: 'bci' [cppcoreguidelines-pro-type-member-init] EventFiltering/macros/uploadOTSobjects.C:103:10: warning: no header providing "std::sort" is directly included [misc-include-cleaner] EventFiltering/macros/uploadOTSobjects.C:130:11: warning: Value stored to 'bcEnd' is never read [clang-analyzer-deadcode.DeadStores] ``` #### `EventFiltering/selectBCRange.cxx` ```text EventFiltering/selectBCRange.cxx:28:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] EventFiltering/selectBCRange.cxx:32:20: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] EventFiltering/selectBCRange.cxx:32:30: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] EventFiltering/selectBCRange.cxx:35:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] EventFiltering/selectBCRange.cxx:43:20: warning: no header providing "std::max" is directly included [misc-include-cleaner] EventFiltering/selectBCRange.cxx:50:12: warning: no header providing "o2::framework::ProcessingContext" is directly included [misc-include-cleaner] EventFiltering/selectBCRange.cxx:52:39: warning: no header providing "o2::framework::TableConsumer" is directly included [misc-include-cleaner] EventFiltering/selectBCRange.cxx:52:82: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] EventFiltering/selectBCRange.cxx:67:18: warning: no header providing "std::runtime_error" is directly included [misc-include-cleaner] EventFiltering/selectBCRange.cxx:76:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] EventFiltering/selectBCRange.cxx:96:18: warning: no header providing "std::min" is directly included [misc-include-cleaner] EventFiltering/selectBCRange.cxx:102:33: warning: no header providing "std::min" is directly included [misc-include-cleaner] EventFiltering/selectBCRange.cxx:106:35: warning: no header providing "std::max" is directly included [misc-include-cleaner] EventFiltering/selectBCRange.cxx:110:10: warning: no header providing "std::sort" is directly included [misc-include-cleaner] EventFiltering/selectBCRange.cxx:115:10: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] EventFiltering/selectBCRange.cxx:137:3: warning: no header providing "o2::framework::DataProcessorSpec" is directly included [misc-include-cleaner] ``` ### PWGCF #### `PWGCF/Core/AnalysisConfigurableCuts.cxx` ```text PWGCF/Core/AnalysisConfigurableCuts.cxx:16:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGCF/Core/AnalysisConfigurableCuts.cxx:18:44: warning: no header providing "TNamed" is directly included [misc-include-cleaner] ``` #### `PWGCF/Core/AnalysisConfigurableCuts.h` ```text PWGCF/Core/AnalysisConfigurableCuts.h:19:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/Core/AnalysisConfigurableCuts.h:21:1: warning: included header TObject.h is not used directly [misc-include-cleaner] ``` #### `PWGCF/Core/CorrelationContainer.cxx` ```text PWGCF/Core/CorrelationContainer.cxx:20:1: warning: included header THnSparse.h is not used directly [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:24:1: warning: included header TH1D.h is not used directly [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:25:1: warning: included header TH2D.h is not used directly [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:26:1: warning: included header TH3D.h is not used directly [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:37:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:39:7: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:41:48: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:57:69: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:66:55: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:100:7: warning: no header providing "strlen" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:124:1: warning: constructor does not initialize these fields: mEventCount [cppcoreguidelines-pro-type-member-init] PWGCF/Core/CorrelationContainer.cxx:195:33: warning: no header providing "TObject" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:199:34: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGCF/Core/CorrelationContainer.cxx:228:1: warning: no header providing "Long64_t" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:242:3: warning: no header providing "TIterator" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:246:9: warning: no header providing "UInt_t" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:318:78: warning: no header providing "Float_t" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:425:126: warning: no header providing "Bool_t" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:542:31: warning: no header providing "TMath::Max" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:542:71: warning: no header providing "TMath::Min" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:549:5: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:624:7: warning: Value stored to 'mixedNormError' is never read [clang-analyzer-deadcode.DeadStores] PWGCF/Core/CorrelationContainer.cxx:721:25: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGCF/Core/CorrelationContainer.cxx:829:20: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGCF/Core/CorrelationContainer.cxx:929:28: warning: no header providing "TMath::Min" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:1000:29: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.cxx:1003:14: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGCF/Core/CorrelationContainer.cxx:1013:14: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGCF/Core/CorrelationContainer.cxx:1423:23: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] ``` #### `PWGCF/Core/CorrelationContainer.h` ```text PWGCF/Core/CorrelationContainer.h:18:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGCF/Core/CorrelationContainer.h:38:75: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.h:43:16: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.h:76:60: warning: no header providing "Float_t" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.h:77:106: warning: no header providing "Bool_t" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.h:77:135: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.h:106:50: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.h:147:11: warning: no header providing "Long64_t" is directly included [misc-include-cleaner] PWGCF/Core/CorrelationContainer.h:181:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGCF/Core/PairCuts.h` ```text PWGCF/Core/PairCuts.h:25:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/Core/PairCuts.h:26:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/Core/PairCuts.h:27:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/Core/PairCuts.h:46:60: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Core/PairCuts.h:134:12: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGCF/Core/PairCuts.h:172:10: warning: variable 'massD1' is not initialized [cppcoreguidelines-init-variables] PWGCF/Core/PairCuts.h:172:18: warning: variable 'massD2' is not initialized [cppcoreguidelines-init-variables] PWGCF/Core/PairCuts.h:172:26: warning: variable 'massM' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGCF/DataModel/CorrelationsDerived.h` ```text PWGCF/DataModel/CorrelationsDerived.h:14:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGCF/DataModel/CorrelationsDerived.h:38:32: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/DataModel/CorrelationsDerived.h:39:7: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/DataModel/CorrelationsDerived.h:101:18: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/DataModel/DptDptFiltered.h` ```text PWGCF/DataModel/DptDptFiltered.h:24:66: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/DataModel/DptDptFiltered.h:73:20: warning: no header providing "int8_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/DataModel/FemtoDerived.h` ```text PWGCF/DataModel/FemtoDerived.h:14:1: warning: included header HfHelper.h is not used directly [misc-include-cleaner] PWGCF/DataModel/FemtoDerived.h:15:1: warning: included header CandidateReconstructionTables.h is not used directly [misc-include-cleaner] PWGCF/DataModel/FemtoDerived.h:16:1: warning: included header CandidateSelectionTables.h is not used directly [misc-include-cleaner] PWGCF/DataModel/FemtoDerived.h:18:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGCF/DataModel/FemtoDerived.h:19:1: warning: included header PIDResponseTOF.h is not used directly [misc-include-cleaner] PWGCF/DataModel/FemtoDerived.h:20:1: warning: included header PIDResponseTPC.h is not used directly [misc-include-cleaner] PWGCF/DataModel/FemtoDerived.h:25:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGCF/DataModel/FemtoDerived.h:27:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGCF/DataModel/FemtoDerived.h:51:21: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/DataModel/FemtoDerived.h:146:23: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/DataModel/FemtoDerived.h:166:40: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/DataModel/FemtoDerived.h:195:32: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/DataModel/FemtoDerived.h:246:42: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/DataModel/FemtoDerived.h:287:186: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGCF/DataModel/FemtoDerived.h:288:201: warning: no header providing "RecoDecayPtEtaPhi" is directly included [misc-include-cleaner] PWGCF/DataModel/FemtoDerived.h:312:191: warning: no header providing "o2::constants::physics::MassLambdaCPlus" is directly included [misc-include-cleaner] PWGCF/DataModel/FemtoDerived.h:345:156: warning: no header providing "o2::constants::physics::MassD0" is directly included [misc-include-cleaner] ``` #### `PWGCF/DataModel/SPTableZDC.h` ```text PWGCF/DataModel/SPTableZDC.h:20:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGCF/DataModel/SPTableZDC.h:21:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGCF/DataModel/SPTableZDC.h:35:42: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/DataModel/SPTableZDC.h:41:62: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx` ```text PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:23:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:28:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:29:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:35:1: warning: included header TH1D.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:36:1: warning: included header TH2D.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:37:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:38:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:39:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:44:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:46:1: warning: included header numeric is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:60:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:62:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:64:32: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:67:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:100:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:106:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:107:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:107:72: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:107:99: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:107:126: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:128:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:229:74: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:265:24: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:327:7: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:440:7: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/Diff_pT_fluct_PID.cxx:479:7: warning: no header providing "TH1D" is directly included [misc-include-cleaner] ``` #### `PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx` ```text PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:17:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:21:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:27:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:32:1: warning: included header GlobalTrackID.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:33:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:35:1: warning: included header unordered_set is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:41:1: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:43:8: warning: constructor does not initialize these fields: pdg, binningM, fqEvent, fqEventSampled, binConEvent, binConEventSampled [cppcoreguidelines-pro-type-member-init] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:44:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:70:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:72:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:75:67: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:116:73: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:137:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:144:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:151:20: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:151:31: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:152:31: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:159:36: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:161:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:170:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:193:70: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:244:23: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:246:20: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:263:32: warning: no header providing "TMath::Factorial" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:265:24: warning: no header providing "std::isnan" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:272:51: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:284:79: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:308:71: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:311:71: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:314:68: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:320:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:365:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:441:42: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:441:77: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:474:28: warning: no header providing "BIT" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:544:26: warning: no header providing "kINT7" is directly included [misc-include-cleaner] ``` #### `PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx` ```text PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:16:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:23:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:26:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:30:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:32:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:33:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:34:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:36:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:37:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:38:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:45:1: warning: included header array is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:48:1: warning: included header numeric is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:58:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:61:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:75:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:92:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:132:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:132:28: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:132:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:133:42: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:133:82: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:133:189: warning: no header providing "o2::aod::track::tpcChi2NCl" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:133:236: warning: no header providing "o2::aod::track::itsChi2NCl" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:136:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:137:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:137:73: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:137:100: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:137:127: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:141:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:142:32: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:147:30: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:147:44: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:147:54: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:148:50: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:148:84: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:151:164: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:152:119: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:163:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:167:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:173:46: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:181:39: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:183:31: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:217:74: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:232:45: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:305:29: warning: no header providing "kTVXinTRD" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:384:74: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:387:76: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:390:77: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:393:76: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:396:76: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:423:26: warning: no header providing "o2::aod::McCollision" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:423:63: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:423:106: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:470:63: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:553:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/MeanptFluctuations.cxx:689:62: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] ``` #### `PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx` ```text PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:12:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:22:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:26:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:27:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:39:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:43:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:50:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:52:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:61:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:61:28: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:61:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:62:42: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:62:71: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:62:190: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:62:222: warning: no header providing "o2::aod::track::tpcChi2NCl" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:65:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:66:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:66:72: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:66:99: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:66:126: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:69:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:72:30: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:72:44: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:72:54: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:73:50: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:73:84: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:76:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:80:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:89:46: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:93:59: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:100:46: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:101:43: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:103:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:106:58: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:150:101: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:178:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:181:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:191:32: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:200:45: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:226:78: warning: no header providing "Form" is directly included [misc-include-cleaner] ``` #### `PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx` ```text PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:18:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:19:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:29:1: warning: included header Digit.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:32:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:37:1: warning: included header TGraphErrors.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:39:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:84:8: warning: constructor does not initialize these fields: ccdb, fPhiCutExpPosHigh, fPhiCutExpPosLow, fPhiCutExpNegHigh, fPhiCutExpNegLow, funcCutEventsByMultPVvsV0A, funcCutEventsByMultPVvsT0C, funcCutEventsByMultPVvsV0A_anotherTrend [cppcoreguidelines-pro-type-member-init] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:88:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:91:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:101:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:109:3: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:120:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:120:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:132:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:185:33: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:197:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:275:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:294:199: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:314:49: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:336:69: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:352:85: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:683:42: warning: no header providing "TMath::TwoPi" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:804:54: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:820:119: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:879:31: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:879:41: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:879:56: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:880:32: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:882:34: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:882:44: warning: no header providing "o2::aod::Timestamps" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:886:10: warning: no header providing "o2::aod::FT0s" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:888:10: warning: no header providing "o2::aod::Origins" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:889:20: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:897:58: warning: no header providing "o2::constants::lhc::LHCMaxBunches" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:901:22: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:922:13: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:922:63: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:934:70: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:951:5: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:974:36: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:975:23: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:1031:11: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:1130:53: warning: no header providing "Long64_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:1144:70: warning: no header providing "o2::constants::lhc::LHCOrbitMUS" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:1148:7: warning: Value stored to 'magneticField' is never read [clang-analyzer-deadcode.DeadStores] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:1157:34: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:1259:33: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:1391:31: warning: no header providing "kTVXinTRD" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:1576:16: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:1998:39: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:2035:75: warning: no header providing "fmod" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:2035:108: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:2149:13: warning: no header providing "fabs" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:2376:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:2439:84: warning: no header providing "o2::aod::Run3MatchedToBCSparse" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:2443:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:2443:53: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] ``` #### `PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx` ```text PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:16:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:17:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:20:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:26:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:27:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:28:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:33:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:34:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:35:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:37:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:40:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:41:1: warning: included header TF1.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:42:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:43:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:44:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:45:1: warning: included header THn.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:47:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:48:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:49:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:65:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:67:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:104:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:107:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:108:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:108:73: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:108:100: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:108:127: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:112:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:117:3: warning: no header providing "TH2F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:122:195: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:135:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:150:31: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:151:35: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:158:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:177:80: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:195:99: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:200:94: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:218:46: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:966:81: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:969:83: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:972:84: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:981:51: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:1066:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:1141:72: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] ``` #### `PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx` ```text PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:17:1: warning: included header PairCuts.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:20:1: warning: included header TriggerAliases.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:21:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:22:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:25:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:32:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:34:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:39:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:45:1: warning: included header fstream is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:46:1: warning: included header sstream is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:59:31: warning: using decl 'Pdg' is unused [misc-unused-using-decls] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:61:8: warning: constructor does not initialize these fields: ccdb, pdg [cppcoreguidelines-pro-type-member-init] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:65:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:128:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:152:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:176:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:176:73: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:176:100: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:176:127: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:180:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:183:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:193:33: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:196:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:218:49: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:219:54: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:247:45: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:285:32: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:289:36: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:987:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx` ```text PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:18:1: warning: included header mcCentrality.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:58:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:60:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:60:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:68:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:72:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:82:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:182:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:185:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:244:5: warning: no header providing "o2::framework::HistogramConfigSpec" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:244:37: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:283:62: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:298:64: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:556:105: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:559:81: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:643:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1301:30: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1310:40: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1312:10: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1403:20: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1531:69: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1860:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1861:24: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1861:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1864:38: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1865:44: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1872:29: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1872:43: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1872:53: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1875:49: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1875:64: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1883:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1883:67: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1887:109: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1892:156: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1966:90: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1994:15: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:2088:41: warning: no header providing "kK0Short" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:2088:79: warning: no header providing "kPiPlus" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:2088:116: warning: no header providing "kPiMinus" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:2223:59: warning: no header providing "kKPlus" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:2226:59: warning: no header providing "kKMinus" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:2231:59: warning: no header providing "kProton" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:2234:59: warning: no header providing "kProtonBar" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:2239:59: warning: no header providing "kPositron" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:2242:59: warning: no header providing "kElectron" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:2247:59: warning: no header providing "o2::constants::physics::kDeuteron" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:2285:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:2287:135: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:2303:84: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:2305:31: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:2314:7: warning: Value stored to 'centrality' is never read [clang-analyzer-deadcode.DeadStores] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:2435:7: warning: Value stored to 'centrality' is never read [clang-analyzer-deadcode.DeadStores] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:2478:50: warning: no header providing "kNuE" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:2478:89: warning: no header providing "kNuMu" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:2478:129: warning: no header providing "kNuTau" is directly included [misc-include-cleaner] ``` #### `PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx` ```text PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:19:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:28:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:39:1: warning: included header utility is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:48:8: warning: constructor does not initialize these fields: ccdb, pdg [cppcoreguidelines-pro-type-member-init] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:49:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:83:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:96:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:99:38: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:101:3: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:151:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:165:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:173:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:174:21: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:175:21: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:176:21: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:177:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:178:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:179:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:357:14: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:398:46: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:405:46: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:759:36: warning: no header providing "o2::constants::physics::MassPiPlus" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:760:36: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:761:36: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/meanPtFlucId.cxx:985:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx` ```text PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:23:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:31:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:40:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:42:38: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:45:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:47:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:91:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:104:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:247:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:686:13: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:700:13: warning: variable 'idMethod' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx` ```text PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:19:1: warning: included header PairCuts.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:24:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:27:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:32:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:33:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:34:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:39:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:44:1: warning: included header TProfile2D.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:62:8: warning: constructor does not initialize these fields: pdgService, ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:69:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:76:53: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:82:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:82:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:82:73: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:82:100: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:82:127: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:117:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:130:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:195:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:200:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:225:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:229:63: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:232:53: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:243:47: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:258:59: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:314:48: warning: no header providing "o2::framework::kTProfile2D" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:356:76: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:422:23: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:423:23: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:822:28: warning: no header providing "kElectron" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:823:28: warning: no header providing "kMuonMinus" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:824:28: warning: no header providing "kPiPlus" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:825:28: warning: no header providing "kKPlus" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:826:28: warning: no header providing "kProton" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx:1163:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx` ```text PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:16:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:17:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:20:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:26:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:27:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:28:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:33:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:34:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:35:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:37:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:40:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:41:1: warning: included header TF1.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:42:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:43:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:44:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:45:1: warning: included header THn.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:47:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:48:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:49:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:65:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:67:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:104:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:107:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:108:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:108:73: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:108:100: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:108:127: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:112:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:117:3: warning: no header providing "TH2F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:122:195: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:135:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:150:31: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:151:35: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:158:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:177:80: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:195:99: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:200:94: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:218:45: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:966:81: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:969:83: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:972:84: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:981:51: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:1066:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:1140:72: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] ``` #### `PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx` ```text PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:28:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:639:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:655:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:715:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:735:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:735:78: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:753:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:815:62: warning: no header providing "o2::aod::evsel::EventSelectionFlags" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:820:72: warning: no header providing "o2::aod::evsel::selectionLabels" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:978:51: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:1023:7: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:1693:22: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:1792:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:1801:13: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:1813:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:1822:13: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:1834:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:1843:13: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2003:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2024:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2046:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2067:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2089:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2110:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2135:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2156:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2181:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2202:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2303:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2311:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2322:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2330:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2341:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2349:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2393:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2418:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2528:15: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2540:15: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2552:15: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2566:15: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2577:15: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2588:15: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2600:17: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2611:17: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2622:17: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2636:15: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2650:15: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2667:15: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2681:15: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2698:15: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/partNumFluc.cxx:2712:15: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ``` #### `PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx` ```text PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:16:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:17:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:27:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:28:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:36:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:37:1: warning: included header DCA.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:38:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:39:1: warning: included header TrackTPCITS.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:42:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:43:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:44:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:45:1: warning: included header TH3F.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:47:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:48:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:49:1: warning: included header TProfile2D.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:52:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:56:1: warning: included header limits is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:57:1: warning: included header map is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:58:1: warning: included header numeric is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:69:8: warning: constructor does not initialize these fields: ccdb, pdg [cppcoreguidelines-pro-type-member-init] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:141:34: warning: member 'pidSuffix' of type 'const std::vector' (aka 'const vector>') is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:143:28: warning: member 'etaLw' of type 'const std::vector' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:146:28: warning: member 'etaUp' of type 'const std::vector' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:150:28: warning: member 'pTLw' of type 'const std::vector' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:151:28: warning: member 'pTUp' of type 'const std::vector' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:204:9: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:204:18: warning: member 'centAxis' of type 'const AxisSpec' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:205:18: warning: member 'centAxis1Per' of type 'const AxisSpec' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:211:18: warning: member 'vzAxis' of type 'const AxisSpec' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:214:18: warning: member 'chgAxis' of type 'const AxisSpec' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:216:18: warning: member 'pTAxis' of type 'const AxisSpec' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:226:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:228:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:230:14: warning: no header providing "TH3F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:268:74: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:270:75: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:272:74: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:274:68: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:564:52: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:567:70: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:574:46: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:587:55: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:628:46: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:651:77: warning: no header providing "o2::framework::kTProfile3D" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:793:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:794:21: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:849:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:854:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:867:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:867:32: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:867:59: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:867:86: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:952:22: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:953:22: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:956:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:963:23: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:964:23: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:965:23: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:968:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:989:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:996:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:1017:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:1038:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:1040:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:1169:52: warning: no header providing "kPiPlus" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:1170:52: warning: no header providing "kKPlus" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:1171:54: warning: no header providing "kProton" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:1351:60: warning: no header providing "o2::constants::physics::MassPiPlus" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:1351:106: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:1352:106: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:1994:15: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:2424:13: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:2439:13: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:2453:13: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ``` #### `PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx` ```text PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:16:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:17:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:27:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:28:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:29:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:30:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:34:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:35:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:36:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:39:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:42:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:43:1: warning: included header TF1.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:44:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:45:1: warning: included header TH1D.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:46:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:47:1: warning: included header TH2D.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:48:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:50:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:51:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:52:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:53:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:54:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:70:8: warning: constructor does not initialize these fields: ccdb, tofNsigmaCut, itsNsigmaCut, tpcNsigmaCut [cppcoreguidelines-pro-type-member-init] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:75:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:76:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:76:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:76:73: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:76:100: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:76:127: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:116:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:134:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:137:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:138:32: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:154:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:158:30: warning: Assigned value is garbage or undefined [clang-analyzer-core.uninitialized.Assign] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:159:32: warning: Assigned value is garbage or undefined [clang-analyzer-core.uninitialized.Assign] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:180:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:187:46: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:189:53: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:197:31: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:201:87: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:253:74: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:409:10: warning: variable 'isPion' is not initialized [cppcoreguidelines-init-variables] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:409:18: warning: variable 'isKaon' is not initialized [cppcoreguidelines-init-variables] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:409:26: warning: variable 'isProton' is not initialized [cppcoreguidelines-init-variables] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:453:74: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:456:76: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:459:77: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:462:76: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx:465:76: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Core/baseSelection.h` ```text PWGCF/Femto/Core/baseSelection.h:399:78: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/Femto/Core/baseSelection.h:412:28: warning: no header providing "TH1" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Core/cascadeBuilder.h` ```text PWGCF/Femto/Core/cascadeBuilder.h:177:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGCF/Femto/Core/cascadeBuilder.h:180:33: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Core/cascadeHistManager.h` ```text PWGCF/Femto/Core/cascadeHistManager.h:85:16: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGCF/Femto/Core/cascadeHistManager.h:297:21: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] PWGCF/Femto/Core/cascadeHistManager.h:324:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/Femto/Core/cascadeHistManager.h:499:29: warning: no header providing "TH1" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Core/closePairRejection.h` ```text PWGCF/Femto/Core/closePairRejection.h:76:113: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/Femto/Core/closePairRejection.h:172:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/Femto/Core/closePairRejection.h:193:7: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/Femto/Core/closePairRejection.h:193:16: warning: variable 'randomSeed' is not initialized [cppcoreguidelines-init-variables] PWGCF/Femto/Core/closePairRejection.h:258:112: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGCF/Femto/Core/closePairRejection.h:362:8: warning: no header providing "std::optional" is directly included [misc-include-cleaner] PWGCF/Femto/Core/closePairRejection.h:369:17: warning: no header providing "std::nullopt" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Core/collisionBuilder.h` ```text PWGCF/Femto/Core/collisionBuilder.h:173:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGCF/Femto/Core/collisionBuilder.h:176:33: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Core/femtoUtils.h` ```text PWGCF/Femto/Core/femtoUtils.h:30:1: warning: included header type_traits is not used directly [misc-include-cleaner] ``` #### `PWGCF/Femto/Core/histManager.h` ```text PWGCF/Femto/Core/histManager.h:37:8: warning: constructor does not initialize these fields: histtype [cppcoreguidelines-pro-type-member-init] ``` #### `PWGCF/Femto/Core/kinkBuilder.h` ```text PWGCF/Femto/Core/kinkBuilder.h:185:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGCF/Femto/Core/kinkBuilder.h:188:33: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Core/kinkHistManager.h` ```text PWGCF/Femto/Core/kinkHistManager.h:84:16: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGCF/Femto/Core/kinkHistManager.h:284:31: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] PWGCF/Femto/Core/kinkHistManager.h:301:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/Femto/Core/kinkHistManager.h:455:29: warning: no header providing "TH1" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Core/mcBuilder.h` ```text PWGCF/Femto/Core/mcBuilder.h:393:21: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Core/pairHistManager.h` ```text PWGCF/Femto/Core/pairHistManager.h:28:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/Femto/Core/pairHistManager.h:621:9: warning: no header providing "LOG" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Core/pairProcessHelpers.h` ```text PWGCF/Femto/Core/pairProcessHelpers.h:29:18: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Core/selectionContainer.h` ```text PWGCF/Femto/Core/selectionContainer.h:360:10: warning: no header providing "std::ostringstream" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Core/trackBuilder.h` ```text PWGCF/Femto/Core/trackBuilder.h:281:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGCF/Femto/Core/trackBuilder.h:284:33: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Core/trackHistManager.h` ```text PWGCF/Femto/Core/trackHistManager.h:139:16: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGCF/Femto/Core/trackHistManager.h:827:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Core/tripletBuilder.h` ```text PWGCF/Femto/Core/tripletBuilder.h:252:48: warning: no header providing "o2::analysis::femto::pairhistmanager::kVtxMult" is directly included [misc-include-cleaner] PWGCF/Femto/Core/tripletBuilder.h:255:48: warning: no header providing "o2::analysis::femto::pairhistmanager::kVtxCent" is directly included [misc-include-cleaner] PWGCF/Femto/Core/tripletBuilder.h:258:48: warning: no header providing "o2::analysis::femto::pairhistmanager::kVtxMultCent" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Core/tripletCleaner.h` ```text PWGCF/Femto/Core/tripletCleaner.h:19:1: warning: included header pairBuilder.h is not used directly [misc-include-cleaner] PWGCF/Femto/Core/tripletCleaner.h:26:59: warning: no header providing "o2::analysis::femto::paircleaner::BasePairCleaner" is directly included [misc-include-cleaner] PWGCF/Femto/Core/tripletCleaner.h:30:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGCF/Femto/Core/tripletCleaner.h:66:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] ``` #### `PWGCF/Femto/Core/tripletHistManager.h` ```text PWGCF/Femto/Core/tripletHistManager.h:27:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGCF/Femto/Core/tripletHistManager.h:28:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/Femto/Core/tripletHistManager.h:30:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGCF/Femto/Core/tripletHistManager.h:386:15: warning: no header providing "ROOT::Math::PxPyPzEVector" is directly included [misc-include-cleaner] PWGCF/Femto/Core/tripletHistManager.h:519:9: warning: no header providing "LOG" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Core/tripletProcessHelpers.h` ```text PWGCF/Femto/Core/tripletProcessHelpers.h:29:21: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Core/twoTrackResonanceBuilder.h` ```text PWGCF/Femto/Core/twoTrackResonanceBuilder.h:34:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/Femto/Core/twoTrackResonanceBuilder.h:240:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGCF/Femto/Core/twoTrackResonanceBuilder.h:243:33: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/Femto/Core/twoTrackResonanceBuilder.h:314:17: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGCF/Femto/Core/twoTrackResonanceBuilder.h:353:14: warning: variable 'bitmaskDcaPos' is not initialized [cppcoreguidelines-init-variables] PWGCF/Femto/Core/twoTrackResonanceBuilder.h:353:29: warning: variable 'bitmaskDcaNeg' is not initialized [cppcoreguidelines-init-variables] PWGCF/Femto/Core/twoTrackResonanceBuilder.h:353:44: warning: variable 'bitmaskDca' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGCF/Femto/Core/twoTrackResonanceHistManager.h` ```text PWGCF/Femto/Core/twoTrackResonanceHistManager.h:148:21: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] PWGCF/Femto/Core/twoTrackResonanceHistManager.h:151:52: warning: no header providing "o2::constants::physics::Pdg" is directly included [misc-include-cleaner] PWGCF/Femto/Core/twoTrackResonanceHistManager.h:164:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Core/v0Builder.h` ```text PWGCF/Femto/Core/v0Builder.h:185:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGCF/Femto/Core/v0Builder.h:188:33: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/Femto/Core/v0Builder.h:460:11: warning: variable 'mass' is not initialized [cppcoreguidelines-init-variables] PWGCF/Femto/Core/v0Builder.h:460:17: warning: variable 'massAnti' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGCF/Femto/Core/v0HistManager.h` ```text PWGCF/Femto/Core/v0HistManager.h:90:16: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGCF/Femto/Core/v0HistManager.h:313:21: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] PWGCF/Femto/Core/v0HistManager.h:326:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/Femto/Core/v0HistManager.h:491:29: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/Femto/Core/v0HistManager.h:556:15: warning: variable 'massLambda' is not initialized [cppcoreguidelines-init-variables] PWGCF/Femto/Core/v0HistManager.h:556:27: warning: variable 'massAntiLambda' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGCF/Femto/FemtoNuclei/DataModel/HadronNucleiTables.h` ```text PWGCF/Femto/FemtoNuclei/DataModel/HadronNucleiTables.h:18:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/DataModel/HadronNucleiTables.h:50:42: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/DataModel/HadronNucleiTables.h:57:41: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/DataModel/HadronNucleiTables.h:71:46: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/DataModel/HadronNucleiTables.h:73:48: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx` ```text PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:20:1: warning: included header EPCalibrationTables.h is not used directly [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:25:1: warning: included header TPCPIDResponse.h is not used directly [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:27:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:38:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:44:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:46:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:50:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:52:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:54:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:55:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:56:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:57:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:58:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:59:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:62:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:69:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:78:37: warning: no header providing "o2::math_utils::Bracket" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:121:3: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:125:3: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:134:3: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:154:3: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:158:8: warning: constructor does not initialize these fields: mBBparamsDe, mRunNumber, mDbz, mCcdb [cppcoreguidelines-pro-type-member-init] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:160:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:165:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:223:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:231:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:233:23: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:236:3: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:245:18: warning: no header providing "o2::vertexing::DCAFitterN" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:249:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:251:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:255:52: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:318:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:329:5: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:368:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:390:59: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:506:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:506:48: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:557:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:557:59: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:606:30: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:608:41: warning: no header providing "o2::constants::physics::MassPiPlus" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:611:41: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:621:121: warning: no header providing "o2::constants::physics::MassDeuteron" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:633:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:633:48: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:639:11: warning: variable 'tpcNSigmaDe' is not initialized [cppcoreguidelines-init-variables] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:666:60: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:864:170: warning: no header providing "o2::constants::physics::MassHelium3" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:1107:44: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:1226:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:1329:27: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/TableProducer/femtoProducer.cxx` ```text PWGCF/Femto/TableProducer/femtoProducer.cxx:80:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `PWGCF/Femto/Tasks/femtoCascadeQa.cxx` ```text PWGCF/Femto/Tasks/femtoCascadeQa.cxx:132:66: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Tasks/femtoKinkQa.cxx` ```text PWGCF/Femto/Tasks/femtoKinkQa.cxx:130:66: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Tasks/femtoPairTrackCascade.cxx` ```text PWGCF/Femto/Tasks/femtoPairTrackCascade.cxx:181:66: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Tasks/femtoPairTrackKink.cxx` ```text PWGCF/Femto/Tasks/femtoPairTrackKink.cxx:171:66: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Tasks/femtoPairTrackTrack.cxx` ```text PWGCF/Femto/Tasks/femtoPairTrackTrack.cxx:127:66: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Tasks/femtoPairTrackV0.cxx` ```text PWGCF/Femto/Tasks/femtoPairTrackV0.cxx:173:66: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Tasks/femtoPairV0V0.cxx` ```text PWGCF/Femto/Tasks/femtoPairV0V0.cxx:174:66: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Tasks/femtoTrackQa.cxx` ```text PWGCF/Femto/Tasks/femtoTrackQa.cxx:88:66: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Femto/Tasks/femtoTrackQa.cxx:113:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Tasks/femtoTripletTrackTrackTrack.cxx` ```text PWGCF/Femto/Tasks/femtoTripletTrackTrackTrack.cxx:133:66: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Femto/Tasks/femtoTripletTrackTrackTrack.cxx:138:34: warning: no header providing "o2::analysis::femto::closepairrejection::CprHist" is directly included [misc-include-cleaner] PWGCF/Femto/Tasks/femtoTripletTrackTrackTrack.cxx:138:115: warning: no header providing "o2::analysis::femto::closepairrejection::makeCprHistSpecMap" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Tasks/femtoTripletTrackTrackV0.cxx` ```text PWGCF/Femto/Tasks/femtoTripletTrackTrackV0.cxx:93:20: warning: no header providing "o2::analysis::femto::particlecleaner::ConfLambdaCleaner1" is directly included [misc-include-cleaner] PWGCF/Femto/Tasks/femtoTripletTrackTrackV0.cxx:153:66: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Femto/Tasks/femtoTripletTrackTrackV0.cxx:161:34: warning: no header providing "o2::analysis::femto::closepairrejection::CprHist" is directly included [misc-include-cleaner] PWGCF/Femto/Tasks/femtoTripletTrackTrackV0.cxx:161:115: warning: no header providing "o2::analysis::femto::closepairrejection::makeCprHistSpecMap" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto/Tasks/femtoTwotrackresonanceQa.cxx` ```text PWGCF/Femto/Tasks/femtoTwotrackresonanceQa.cxx:35:1: warning: included header map is not used directly [misc-include-cleaner] ``` #### `PWGCF/Femto/Tasks/femtoV0Qa.cxx` ```text PWGCF/Femto/Tasks/femtoV0Qa.cxx:130:66: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto3D/Core/femto3dPairTask.h` ```text PWGCF/Femto3D/Core/femto3dPairTask.h:38:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/Femto3D/Core/femto3dPairTask.h:77:18: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGCF/Femto3D/Core/femto3dPairTask.h:88:30: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGCF/Femto3D/Core/femto3dPairTask.h:109:27: warning: no header providing "std::floor" is directly included [misc-include-cleaner] PWGCF/Femto3D/Core/femto3dPairTask.h:110:30: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGCF/Femto3D/Core/femto3dPairTask.h:110:43: warning: no header providing "std::to_string" is directly included [misc-include-cleaner] PWGCF/Femto3D/Core/femto3dPairTask.h:126:23: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGCF/Femto3D/Core/femto3dPairTask.h:218:19: warning: no header providing "NULL" is directly included [misc-include-cleaner] PWGCF/Femto3D/Core/femto3dPairTask.h:227:19: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGCF/Femto3D/Core/femto3dPairTask.h:244:7: warning: declaration uses identifier '_PDG1', which is a reserved identifier [bugprone-reserved-identifier] PWGCF/Femto3D/Core/femto3dPairTask.h:244:18: warning: declaration uses identifier '_PDG2', which is a reserved identifier [bugprone-reserved-identifier] PWGCF/Femto3D/Core/femto3dPairTask.h:246:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/Femto3D/Core/femto3dPairTask.h:315:17: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto3D/DataModel/PIDutils.h` ```text PWGCF/Femto3D/DataModel/PIDutils.h:143:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto3D/DataModel/singletrackselector.h` ```text PWGCF/Femto3D/DataModel/singletrackselector.h:20:1: warning: included header PIDutils.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:22:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:30:1: warning: included header vector is not used directly [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:90:63: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:117:74: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:134:74: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:134:108: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:134:131: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:135:127: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:136:121: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:137:155: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:137:219: warning: no header providing "o2::aod::evsel::kIsVertexTRDmatched" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:138:143: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:139:129: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:150:26: warning: no header providing "o2::aod::evsel::Selection" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:173:50: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:178:54: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:295:86: warning: no header providing "sqrt" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:298:55: warning: no header providing "std::tanh" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:299:55: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:300:44: warning: no header providing "log" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:302:86: warning: no header providing "std::cosh" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:303:116: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:304:116: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGCF/Femto3D/DataModel/singletrackselector.h:311:50: warning: no header providing "std::asin" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto3D/TableProducer/Converters/singleTrackSelectorConverter.cxx` ```text PWGCF/Femto3D/TableProducer/Converters/singleTrackSelectorConverter.cxx:16:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/TableProducer/Converters/singleTrackSelectorConverter.cxx:17:10: error: 'PWGCF/Femto3D/DataModel/singletrackselector.h' file not found [clang-diagnostic-error] PWGCF/Femto3D/TableProducer/Converters/singleTrackSelectorConverter.cxx:18:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/TableProducer/Converters/singleTrackSelectorConverter.cxx:28:8: warning: constructor does not initialize these fields: tableRow [cppcoreguidelines-pro-type-member-init] PWGCF/Femto3D/TableProducer/Converters/singleTrackSelectorConverter.cxx:31:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto3D/TableProducer/Converters/singleTrackSelectorConverterV1.cxx` ```text PWGCF/Femto3D/TableProducer/Converters/singleTrackSelectorConverterV1.cxx:16:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/TableProducer/Converters/singleTrackSelectorConverterV1.cxx:17:10: error: 'PWGCF/Femto3D/DataModel/singletrackselector.h' file not found [clang-diagnostic-error] PWGCF/Femto3D/TableProducer/Converters/singleTrackSelectorConverterV1.cxx:18:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/TableProducer/Converters/singleTrackSelectorConverterV1.cxx:28:8: warning: constructor does not initialize these fields: tableRow [cppcoreguidelines-pro-type-member-init] PWGCF/Femto3D/TableProducer/Converters/singleTrackSelectorConverterV1.cxx:31:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto3D/TableProducer/singleTrackSelector.cxx` ```text PWGCF/Femto3D/TableProducer/singleTrackSelector.cxx:24:1: warning: included header PIDResponseITS.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelector.cxx:50:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/Femto3D/TableProducer/singleTrackSelector.cxx:51:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelector.cxx:54:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelector.cxx:56:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelector.cxx:77:21: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelector.cxx:103:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelector.cxx:139:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelector.cxx:139:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelector.cxx:142:11: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelector.cxx:144:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelector.cxx:160:43: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelector.cxx:161:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelector.cxx:161:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelector.cxx:170:158: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelector.cxx:206:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelector.cxx:224:71: warning: no header providing "o2::aod::track::Track" is directly included [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelector.cxx:353:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelector.cxx:584:14: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto3D/TableProducer/singleTrackSelectorExtra.cxx` ```text PWGCF/Femto3D/TableProducer/singleTrackSelectorExtra.cxx:18:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelectorExtra.cxx:35:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelectorExtra.cxx:39:5: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto3D/TableProducer/singleTrackSelectorPIDMaker.cxx` ```text PWGCF/Femto3D/TableProducer/singleTrackSelectorPIDMaker.cxx:18:1: warning: included header AnalysisDataModel.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelectorPIDMaker.cxx:37:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/Femto3D/TableProducer/singleTrackSelectorPIDMaker.cxx:125:54: warning: no header providing "std::function" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto3D/Tasks/PIDoptimization.cxx` ```text PWGCF/Femto3D/Tasks/PIDoptimization.cxx:16:1: warning: included header ctpRateFetcher.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:17:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:18:1: warning: included header Zorro.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:19:1: warning: included header ZorroSummary.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:20:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:22:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:28:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:29:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:30:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:35:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:38:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:39:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:40:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:41:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:42:1: warning: included header TParameter.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:46:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:47:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:69:41: warning: declaration uses identifier '_IRcut', which is a reserved identifier [bugprone-reserved-identifier] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:70:37: warning: declaration uses identifier '_OccupancyCut', which is a reserved identifier [bugprone-reserved-identifier] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:80:16: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:89:23: warning: declaration uses identifier '_PIDtrshld', which is a reserved identifier [bugprone-reserved-identifier] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:95:19: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:104:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:107:30: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:109:53: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:123:53: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:128:32: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:200:34: warning: no header providing "o2::soa::Attach" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:203:32: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:203:32: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:205:79: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:207:78: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:209:79: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:211:76: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:215:89: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:230:55: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:236:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:236:79: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/PIDoptimization.cxx:271:9: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ``` #### `PWGCF/Femto3D/Tasks/femto3dPairTask.cxx` ```text PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:17:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:24:1: warning: included header TParameter.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:25:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:29:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:35:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:38:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:39:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:40:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:48:8: warning: constructor does not initialize these fields: IsIdentical [cppcoreguidelines-pro-type-member-init] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:51:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:53:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:59:41: warning: declaration uses identifier '_IRcut', which is a reserved identifier [bugprone-reserved-identifier] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:60:37: warning: declaration uses identifier '_OccupancyCut', which is a reserved identifier [bugprone-reserved-identifier] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:67:16: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:79:23: warning: declaration uses identifier '_PIDtrshld_1', which is a reserved identifier [bugprone-reserved-identifier] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:87:23: warning: declaration uses identifier '_PIDtrshld_2', which is a reserved identifier [bugprone-reserved-identifier] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:104:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:117:30: warning: declaration uses identifier '_MEreductionFactor', which is a reserved identifier [bugprone-reserved-identifier] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:134:12: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:151:19: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:152:19: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:167:43: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:177:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:204:38: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:204:102: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:229:119: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:249:9: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:261:193: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:331:11: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:331:33: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:415:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:437:79: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:440:96: warning: no header providing "o2::aod::singletrackselector::TPCselection" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:440:185: warning: no header providing "o2::aod::singletrackselector::TOFselection" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:444:71: warning: no header providing "o2::aod::singletrackselector::getITSNsigma" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:445:71: warning: no header providing "o2::aod::singletrackselector::getTPCNsigma" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:446:71: warning: no header providing "o2::aod::singletrackselector::getTOFNsigma" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:487:33: warning: no header providing "std::floor" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx` ```text PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:20:1: warning: included header TParameter.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:21:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:31:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:34:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:35:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:36:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:44:8: warning: constructor does not initialize these fields: IsIdentical [cppcoreguidelines-pro-type-member-init] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:47:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:49:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:55:41: warning: declaration uses identifier '_IRcut', which is a reserved identifier [bugprone-reserved-identifier] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:56:37: warning: declaration uses identifier '_OccupancyCut', which is a reserved identifier [bugprone-reserved-identifier] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:63:16: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:75:23: warning: declaration uses identifier '_PIDtrshld_1', which is a reserved identifier [bugprone-reserved-identifier] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:83:23: warning: declaration uses identifier '_PIDtrshld_2', which is a reserved identifier [bugprone-reserved-identifier] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:97:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:116:12: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:133:45: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:136:45: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:140:43: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:146:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:149:14: warning: no header providing "o2::aod::ITSResponse" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:177:51: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:177:129: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:186:113: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:229:149: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:337:9: warning: variable 'trackPDG' is not initialized [cppcoreguidelines-init-variables] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:337:19: warning: variable 'trackOrigin' is not initialized [cppcoreguidelines-init-variables] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:340:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:364:96: warning: no header providing "o2::aod::singletrackselector::TPCselection" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:364:185: warning: no header providing "o2::aod::singletrackselector::TOFselection" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:371:81: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dPairTaskMC.cxx:432:33: warning: no header providing "std::floor" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto3D/Tasks/femto3dQA.cxx` ```text PWGCF/Femto3D/Tasks/femto3dQA.cxx:23:1: warning: included header TParameter.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dQA.cxx:24:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dQA.cxx:27:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dQA.cxx:28:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dQA.cxx:29:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dQA.cxx:33:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dQA.cxx:46:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dQA.cxx:48:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dQA.cxx:56:41: warning: declaration uses identifier '_IRcut', which is a reserved identifier [bugprone-reserved-identifier] PWGCF/Femto3D/Tasks/femto3dQA.cxx:57:37: warning: declaration uses identifier '_OccupancyCut', which is a reserved identifier [bugprone-reserved-identifier] PWGCF/Femto3D/Tasks/femto3dQA.cxx:66:16: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dQA.cxx:75:23: warning: declaration uses identifier '_PIDtrshld', which is a reserved identifier [bugprone-reserved-identifier] PWGCF/Femto3D/Tasks/femto3dQA.cxx:89:19: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dQA.cxx:104:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dQA.cxx:108:16: warning: no header providing "o2::aod::ITSResponse" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dQA.cxx:126:67: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dQA.cxx:140:32: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dQA.cxx:141:55: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dQA.cxx:158:34: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dQA.cxx:162:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dQA.cxx:167:52: warning: no header providing "o2::framework::kTH2I" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tasks/femto3dQA.cxx:269:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/Femto3D/Tools/checkPacking.cxx` ```text PWGCF/Femto3D/Tools/checkPacking.cxx:20:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGCF/Femto3D/Tools/checkPacking.cxx:27:20: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tools/checkPacking.cxx:37:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tools/checkPacking.cxx:51:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tools/checkPacking.cxx:65:3: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGCF/Femto3D/Tools/checkPacking.cxx:98:15: warning: no header providing "Form" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h` ```text PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h:29:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h:32:1: warning: included header PID.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h:34:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h:36:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h:40:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h:41:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h:131:42: warning: no header providing "o2::aod::femtodreamparticle::ParticleType" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h:146:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h:181:44: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h:203:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h:366:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h:381:5: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h:384:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h:388:84: warning: no header providing "o2::aod::femtodreamparticle::ParticleTypeName" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h:390:153: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h:391:154: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h:393:159: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h:409:49: warning: no header providing "o2::aod::femtodreamparticle::TrackType" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h:410:49: warning: no header providing "o2::aod::femtodreamparticle::cutContainerType" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h` ```text PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:20:1: warning: included header EventPlaneHelper.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:21:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:22:1: warning: included header Qvectors.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:29:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:33:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:72:70: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:74:110: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:111:63: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:111:121: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:111:180: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:111:238: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:111:289: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:174:140: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:223:74: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:237:23: warning: no header providing "TH2D" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:245:23: warning: no header providing "TProfile" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:245:68: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:283:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:308:38: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:356:5: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:480:5: warning: no header providing "TComplex" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:501:21: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:519:15: warning: no header providing "o2::framework::HistPtr" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Core/femtoDreamContainer.h` ```text PWGCF/FemtoDream/Core/femtoDreamContainer.h:28:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamContainer.h:36:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoDream/Core/femtoDreamContainer.h:81:109: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamContainer.h:83:128: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamContainer.h:95:166: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamContainer.h:114:101: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamContainer.h:142:44: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamContainer.h:150:16: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamContainer.h:335:11: warning: variable 'femtoObs' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamContainer.h:335:21: warning: variable 'femtoObsMC' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamContainer.h:396:11: warning: variable 'femtoObs' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamContainer.h:396:21: warning: variable 'femtoObsMC' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamContainer.h:440:11: warning: variable 'femtoObs' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamContainer.h:440:21: warning: variable 'femtoObsMC' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamContainer.h:561:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h` ```text PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:23:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:30:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:31:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:34:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:75:112: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:76:119: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:93:103: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:115:16: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:118:118: error: no member named 'femtodreamMCparticle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:118:160: error: no member named 'femtodreamMCparticle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:122:108: error: no member named 'femtodreamMCparticle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:122:150: error: no member named 'femtodreamMCparticle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:149:22: error: no member named 'femtodreamMCparticle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:153:78: error: no member named 'femtodreamMCparticle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:154:78: error: no member named 'femtodreamMCparticle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:170:80: error: no member named 'femtodreamMCparticle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:170:122: error: no member named 'femtodreamMCparticle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:171:80: error: no member named 'femtodreamMCparticle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:171:122: error: no member named 'femtodreamMCparticle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:172:80: error: no member named 'femtodreamMCparticle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:172:122: error: no member named 'femtodreamMCparticle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:187:11: warning: variable 'femtoObsMC' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h` ```text PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:27:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:28:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:41:7: warning: constructor does not initialize these fields: deltaPhiMax, deltaEtaMax, magfield [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:64:51: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:64:204: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:74:54: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:74:206: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:187:9: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:212:43: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:269:9: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:276:13: warning: variable 'indexOfDaughterPart1' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:276:35: warning: variable 'indexOfDaughterPart2' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:354:13: warning: variable 'indexOfDaughter' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:433:13: warning: variable 'indexOfDaughterPart1' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:433:35: warning: variable 'indexOfDaughterPart2' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:512:16: warning: variable 'deta' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:512:22: warning: variable 'dphiAvg' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:512:31: warning: variable 'dphi_AT_PV' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:512:43: warning: variable 'dphi_AT_SpecificRadii' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:512:66: warning: variable 'daughterEta' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:512:79: warning: variable 'daughterPhi' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:538:20: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:588:16: warning: variable 'deta' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:588:22: warning: variable 'dphiAvg' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:588:31: warning: variable 'dphi_AT_PV' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:588:43: warning: variable 'dphi_AT_SpecificRadii' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:588:66: warning: variable 'daughterEta' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:588:79: warning: variable 'daughterPhi' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:665:13: warning: variable 'indexOfDaughter' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:743:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:769:20: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:786:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:811:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:813:38: warning: no header providing "std::asin" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:818:18: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:948:11: warning: variable 'dphi' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:956:14: warning: no header providing "TVector2" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Core/femtoDreamEventHisto.h` ```text PWGCF/FemtoDream/Core/femtoDreamEventHisto.h:19:1: warning: included header FemtoDerived.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamEventHisto.h:22:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoDream/Core/femtoDreamEventHisto.h:27:7: warning: constructor does not initialize these fields: mHistogramRegistry [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoDream/Core/femtoDreamEventHisto.h:37:71: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamEventHisto.h:40:95: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Core/femtoDreamMath.h` ```text PWGCF/FemtoDream/Core/femtoDreamMath.h:19:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamMath.h:20:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamMath.h:21:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamMath.h:22:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamMath.h:24:1: warning: included header VectorUtil.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamMath.h:26:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamMath.h:46:23: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamMath.h:51:37: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamMath.h:51:64: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamMath.h:55:17: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamMath.h:58:23: warning: no header providing "ROOT::Math::Boost" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamMath.h:79:22: warning: no header providing "ROOT::Math::PxPyPzEVector" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamMath.h:113:12: warning: no header providing "sqrt" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamMath.h:179:116: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamMath.h:265:29: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Core/femtoDreamObjectSelection.h` ```text PWGCF/FemtoDream/Core/femtoDreamObjectSelection.h:23:1: warning: included header PID.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamObjectSelection.h:29:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoDream/Core/femtoDreamObjectSelection.h:30:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoDream/Core/femtoDreamObjectSelection.h:43:7: warning: constructor does not initialize these fields: mHistogramRegistry, mQAHistogramRegistry [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoDream/Core/femtoDreamObjectSelection.h:55:149: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamObjectSelection.h:56:43: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamObjectSelection.h:57:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Core/femtoDreamPairCleaner.h` ```text PWGCF/FemtoDream/Core/femtoDreamPairCleaner.h:22:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoDream/Core/femtoDreamPairCleaner.h:32:7: warning: constructor does not initialize these fields: mHistogramRegistry [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoDream/Core/femtoDreamPairCleaner.h:61:9: warning: no header providing "LOG" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h` ```text PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h:30:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h:40:7: warning: constructor does not initialize these fields: mHistogramRegistry [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h:59:113: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h:65:218: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h:151:95: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h:211:94: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h:286:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h:322:18: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h:396:11: warning: variable 'momentum' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h:468:22: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h:469:16: warning: no header providing "kElectron" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h:473:16: warning: no header providing "kPiPlus" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h:477:16: warning: no header providing "kKPlus" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h:481:16: warning: no header providing "kProton" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h:825:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Core/femtoDreamResoSelection.h` ```text PWGCF/FemtoDream/Core/femtoDreamResoSelection.h:25:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamResoSelection.h:30:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamResoSelection.h:31:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamResoSelection.h:34:1: warning: included header cstdint is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamResoSelection.h:65:11: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGCF/FemtoDream/Core/femtoDreamResoSelection.h:78:3: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamResoSelection.h:152:44: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamResoSelection.h:174:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamResoSelection.h:286:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamResoSelection.h:300:95: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamResoSelection.h:309:168: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamResoSelection.h:399:15: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamResoSelection.h:537:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamResoSelection.h:540:22: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamResoSelection.h:609:17: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamResoSelection.h:614:15: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Core/femtoDreamSelection.h` ```text PWGCF/FemtoDream/Core/femtoDreamSelection.h:25:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoDream/Core/femtoDreamSelection.h:26:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoDream/Core/femtoDreamSelection.h:42:23: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamSelection.h:113:73: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h` ```text PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:24:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:25:1: warning: included header PIDResponseITS.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:26:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:35:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:36:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:71:3: warning: constructor does not initialize these fields: nITSclsMin, nITSclsIbMin [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:161:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:175:85: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:199:31: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::SelectionType" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:276:110: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::kEqual" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:277:110: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::kLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:278:110: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::kUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:279:110: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::kAbsUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:318:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:321:35: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::kNcutStages" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:322:78: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::mCutStage" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:322:154: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:324:158: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:329:180: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:381:88: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::kAbsLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:486:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Core/femtoDreamUtils.h` ```text PWGCF/FemtoDream/Core/femtoDreamUtils.h:38:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamUtils.h:39:10: warning: no header providing "kPiPlus" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamUtils.h:42:10: warning: no header providing "kKPlus" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamUtils.h:45:10: warning: no header providing "kProton" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamUtils.h:48:10: warning: no header providing "kLambda0" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamUtils.h:51:10: warning: no header providing "kXiMinus" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamUtils.h:82:10: warning: no header providing "kOmegaMinus" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamUtils.h:92:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamUtils.h:105:12: warning: no header providing "kSigmaPlus" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamUtils.h:114:12: warning: no header providing "kSigma0" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamUtils.h:128:13: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamUtils.h:162:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamUtils.h:173:3: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Core/femtoDreamV0Selection.h` ```text PWGCF/FemtoDream/Core/femtoDreamV0Selection.h:25:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0Selection.h:28:1: warning: included header PID.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0Selection.h:30:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0Selection.h:34:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoDream/Core/femtoDreamV0Selection.h:35:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoDream/Core/femtoDreamV0Selection.h:76:42: warning: no header providing "o2::aod::femtodreamparticle::ParticleType" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0Selection.h:92:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0Selection.h:128:44: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0Selection.h:150:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0Selection.h:291:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0Selection.h:297:5: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0Selection.h:299:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0Selection.h:304:63: warning: no header providing "o2::aod::femtodreamparticle::ParticleTypeName" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0Selection.h:308:71: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0Selection.h:313:56: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0Selection.h:334:33: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0Selection.h:344:49: warning: no header providing "o2::aod::femtodreamparticle::TrackType" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0Selection.h:345:49: warning: no header providing "o2::aod::femtodreamparticle::cutContainerType" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0Selection.h:445:32: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0Selection.h:564:52: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Core/femtoDreamV0SelectionK0Short.h` ```text PWGCF/FemtoDream/Core/femtoDreamV0SelectionK0Short.h:27:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0SelectionK0Short.h:30:1: warning: included header PID.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0SelectionK0Short.h:76:42: warning: no header providing "o2::aod::femtodreamparticle::ParticleType" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0SelectionK0Short.h:91:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0SelectionK0Short.h:124:82: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0SelectionK0Short.h:145:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0SelectionK0Short.h:298:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0SelectionK0Short.h:304:5: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0SelectionK0Short.h:306:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0SelectionK0Short.h:311:36: warning: no header providing "o2::aod::femtodreamparticle::ParticleTypeName" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0SelectionK0Short.h:314:69: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0SelectionK0Short.h:319:70: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0SelectionK0Short.h:340:31: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0SelectionK0Short.h:349:49: warning: no header providing "o2::aod::femtodreamparticle::TrackType" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0SelectionK0Short.h:350:49: warning: no header providing "o2::aod::femtodreamparticle::cutContainerType" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0SelectionK0Short.h:467:32: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Core/femtoDreamV0SelectionK0Short.h:614:54: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx` ```text PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:22:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:24:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:35:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:40:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:42:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:43:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:55:85: warning: no header providing "o2::aod::CentFT0Ms" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:66:8: warning: constructor does not initialize these fields: mRunNumber, mMagField, ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:68:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:75:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:84:60: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:111:101: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:113:48: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:118:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:120:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:124:61: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:129:97: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::kEqual" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:130:97: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::kLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:131:97: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::kUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:132:96: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::kAbsUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:154:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:154:32: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:154:59: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:154:86: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:177:34: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:295:27: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:339:34: warning: no header providing "o2::soa::Attach" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:344:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerReducedTask.cxx:353:34: warning: no header providing "o2::soa::Attach" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx` ```text PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:25:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:36:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:41:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:44:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:64:131: warning: no header providing "o2::aod::QvectorFT0CVecs" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:83:8: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:92:8: warning: constructor does not initialize these fields: mRunNumber, mMagField, ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:96:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:108:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:122:60: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:150:101: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:180:27: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:247:132: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:247:167: warning: no header providing "o2::constants::physics::MassKMinus" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:247:203: warning: no header providing "o2::constants::physics::MassPhi" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:296:48: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:305:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:306:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:308:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:320:66: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:321:82: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:329:86: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:345:97: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::kEqual" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:346:97: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::kLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:347:97: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::kUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:348:96: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::kAbsUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:379:134: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::kAbsLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:468:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:468:32: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:468:59: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:468:86: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:491:34: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:521:27: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:812:7: warning: uninitialized record type: 'cutContainer' [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:812:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:1062:17: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:1067:23: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:1164:34: warning: no header providing "o2::soa::Attach" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTask.cxx:1172:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx` ```text PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:17:1: warning: included header femtoDreamContainerThreeBody.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:18:1: warning: included header femtoDreamDetaDphiStar.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:19:1: warning: included header femtoDreamEventHisto.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:20:1: warning: included header femtoDreamPairCleaner.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:21:1: warning: included header femtoDreamParticleHisto.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:22:1: warning: included header femtoDreamUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:24:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:27:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:28:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:29:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:44:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:46:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:49:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:54:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:71:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:71:85: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:72:47: warning: no header providing "o2::framework::expressions::ifnode" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:72:85: warning: no header providing "o2::framework::expressions::nexp" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:72:189: warning: no header providing "ncheckbit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:90:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:146:56: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:148:20: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:154:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:358:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:360:55: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:506:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx` ```text PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:26:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:37:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:44:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:47:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:48:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:93:8: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:102:8: warning: constructor does not initialize these fields: mRunNumber, mMagField, ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:121:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:129:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:135:60: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:151:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:168:103: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:388:48: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:401:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:403:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:415:66: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:416:82: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:440:103: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::kEqual" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:441:103: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::kLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:442:103: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::kUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:443:102: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::kAbsUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:474:153: warning: no header providing "o2::analysis::femtoDream::femtoDreamSelection::kAbsLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:721:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:721:32: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:721:59: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:721:86: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:744:34: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:774:27: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:1093:7: warning: uninitialized record type: 'cutContainer' [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:1093:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:1529:23: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskReso.cxx:1817:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Tasks/femtoDreamCollisionMasker.cxx` ```text PWGCF/FemtoDream/Tasks/femtoDreamCollisionMasker.cxx:21:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamCollisionMasker.cxx:29:1: warning: included header HistogramRegistry.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamCollisionMasker.cxx:30:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamCollisionMasker.cxx:57:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamCollisionMasker.cxx:67:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamCollisionMasker.cxx:107:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamCollisionMasker.cxx:128:10: warning: no header providing "o2::framework::DeviceSpec" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamCollisionMasker.cxx:335:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Tasks/femtoDreamDebugCascade.cxx` ```text PWGCF/FemtoDream/Tasks/femtoDreamDebugCascade.cxx:18:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugCascade.cxx:23:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugCascade.cxx:24:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugCascade.cxx:25:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugCascade.cxx:26:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugCascade.cxx:41:8: warning: constructor does not initialize these fields: massProton, massPion, massKaon, massLambda, massCompetingBach [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoDream/Tasks/femtoDreamDebugCascade.cxx:42:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugCascade.cxx:44:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugCascade.cxx:50:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugCascade.cxx:82:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugCascade.cxx:83:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugCascade.cxx:83:144: warning: no header providing "ncheckbit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugCascade.cxx:84:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugCascade.cxx:94:48: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugCascade.cxx:103:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugCascade.cxx:161:17: warning: variable 'invMassCompetingCasc' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGCF/FemtoDream/Tasks/femtoDreamDebugReso.cxx` ```text PWGCF/FemtoDream/Tasks/femtoDreamDebugReso.cxx:20:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugReso.cxx:21:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugReso.cxx:24:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugReso.cxx:25:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugReso.cxx:43:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugReso.cxx:45:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugReso.cxx:48:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugReso.cxx:52:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugReso.cxx:76:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugReso.cxx:78:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugReso.cxx:78:45: warning: no header providing "o2::framework::expressions::ifnode" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugReso.cxx:78:167: warning: no header providing "ncheckbit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugReso.cxx:83:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugReso.cxx:96:48: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugReso.cxx:99:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugReso.cxx:104:105: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugReso.cxx:154:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Tasks/femtoDreamDebugTrack.cxx` ```text PWGCF/FemtoDream/Tasks/femtoDreamDebugTrack.cxx:17:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugTrack.cxx:18:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugTrack.cxx:21:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugTrack.cxx:22:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugTrack.cxx:36:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugTrack.cxx:38:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugTrack.cxx:55:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugTrack.cxx:59:62: warning: no header providing "TMath::TwoPi" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugTrack.cxx:74:29: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugTrack.cxx:79:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugTrack.cxx:79:82: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugTrack.cxx:90:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugTrack.cxx:105:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugTrack.cxx:107:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugTrack.cxx:136:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Tasks/femtoDreamDebugV0.cxx` ```text PWGCF/FemtoDream/Tasks/femtoDreamDebugV0.cxx:22:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugV0.cxx:23:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugV0.cxx:26:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugV0.cxx:27:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugV0.cxx:35:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugV0.cxx:44:8: warning: constructor does not initialize these fields: massProton, massPion [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoDream/Tasks/femtoDreamDebugV0.cxx:45:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugV0.cxx:47:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugV0.cxx:51:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugV0.cxx:78:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugV0.cxx:79:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugV0.cxx:79:138: warning: no header providing "ncheckbit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugV0.cxx:80:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugV0.cxx:91:48: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugV0.cxx:97:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugV0.cxx:103:103: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamDebugV0.cxx:152:17: warning: variable 'invMassCompetingV0' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Tasks/femtoDreamDebugV0.cxx:182:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Tasks/femtoDreamHashTask.cxx` ```text PWGCF/FemtoDream/Tasks/femtoDreamHashTask.cxx:21:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamHashTask.cxx:28:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamHashTask.cxx:28:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamHashTask.cxx:34:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamHashTask.cxx:36:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx` ```text PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:22:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:54:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:72:66: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:72:90: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:74:97: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:81:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:81:26: warning: no header providing "o2::framework::O2DatabasePDG" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:177:56: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:182:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:189:69: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:190:23: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:203:89: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:207:90: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:301:90: warning: no header providing "std::powf" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:326:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:328:5: warning: uninitialized record type: 'nsigma' [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:329:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:604:34: warning: no header providing "o2::soa::Attach" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:782:5: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairEfficiency.cxx:788:55: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackCascade.cxx` ```text PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackCascade.cxx:20:1: warning: included header femtoDreamUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackCascade.cxx:26:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackCascade.cxx:29:1: warning: included header stat.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackCascade.cxx:41:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackCascade.cxx:42:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackCascade.cxx:44:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackCascade.cxx:46:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackCascade.cxx:58:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackCascade.cxx:75:35: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackCascade.cxx:76:51: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackCascade.cxx:100:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackCascade.cxx:196:32: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackCascade.cxx:209:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackCascade.cxx:209:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackCascade.cxx:221:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackCascade.cxx:222:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackCascade.cxx:352:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackTrack.cxx` ```text PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackTrack.cxx:32:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackTrack.cxx:34:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackTrack.cxx:50:8: warning: constructor does not initialize these fields: random [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackTrack.cxx:51:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackTrack.cxx:52:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackTrack.cxx:107:65: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackTrack.cxx:110:35: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackTrack.cxx:112:51: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackTrack.cxx:142:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackTrack.cxx:232:32: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackTrack.cxx:249:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackTrack.cxx:249:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackTrack.cxx:266:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackTrack.cxx:270:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackTrack.cxx:339:10: warning: no header providing "o2::framework::DeviceSpec" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackTrack.cxx:707:24: warning: no header providing "TMath::DegToRad" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackV0.cxx` ```text PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackV0.cxx:16:1: warning: included header stat.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackV0.cxx:43:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackV0.cxx:44:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackV0.cxx:47:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackV0.cxx:49:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackV0.cxx:61:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackV0.cxx:79:41: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackV0.cxx:79:55: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackV0.cxx:107:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackV0.cxx:201:32: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackV0.cxx:216:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackV0.cxx:216:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackV0.cxx:227:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackV0.cxx:229:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackV0.cxx:265:10: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackV0.cxx:268:10: warning: no header providing "o2::framework::DeviceSpec" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackV0.cxx:365:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0Reso.cxx` ```text PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0Reso.cxx:22:1: warning: included header femtoDreamPairCleaner.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0Reso.cxx:24:1: warning: included header femtoDreamUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0Reso.cxx:31:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0Reso.cxx:32:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0Reso.cxx:33:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0Reso.cxx:36:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0Reso.cxx:38:1: warning: included header bitset is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0Reso.cxx:51:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0Reso.cxx:52:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0Reso.cxx:63:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0Reso.cxx:63:51: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0Reso.cxx:119:32: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0Reso.cxx:179:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0Reso.cxx:226:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0Reso.cxx:226:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0Reso.cxx:247:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0Reso.cxx:250:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0Reso.cxx:285:53: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0V0.cxx` ```text PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0V0.cxx:23:1: warning: included header femtoDreamPairCleaner.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0V0.cxx:25:1: warning: included header femtoDreamUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0V0.cxx:32:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0V0.cxx:33:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0V0.cxx:34:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0V0.cxx:39:1: warning: included header bitset is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0V0.cxx:50:8: warning: constructor does not initialize these fields: random [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0V0.cxx:51:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0V0.cxx:52:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0V0.cxx:87:35: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0V0.cxx:89:51: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0V0.cxx:121:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0V0.cxx:193:32: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0V0.cxx:208:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0V0.cxx:208:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0V0.cxx:218:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamPairTaskV0V0.cxx:222:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx` ```text PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:23:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:24:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:42:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:43:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:45:33: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:53:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:75:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:75:85: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:76:47: warning: no header providing "o2::framework::expressions::ifnode" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:76:85: warning: no header providing "o2::framework::expressions::nexp" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:76:189: warning: no header providing "ncheckbit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:80:47: warning: no header providing "o2::framework::expressions::ifnode" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:80:72: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:103:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:108:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:111:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:111:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:130:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:134:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:144:79: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:146:110: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:149:16: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:150:81: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:174:10: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:177:10: warning: no header providing "o2::framework::DeviceSpec" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:235:17: warning: no header providing "o2::analysis::femtoDream::FemtoDreamMath" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:288:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx` ```text PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:27:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:29:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:44:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:45:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:47:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:50:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:51:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:54:47: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:84:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:84:85: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:85:47: warning: no header providing "o2::framework::expressions::ifnode" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:85:85: warning: no header providing "o2::framework::expressions::nexp" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:85:189: warning: no header providing "ncheckbit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:89:47: warning: no header providing "o2::framework::expressions::ifnode" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:89:72: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:112:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:117:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:120:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:120:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:139:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:143:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:153:79: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:155:110: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:158:16: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:159:81: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:184:10: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:187:10: warning: no header providing "o2::framework::DeviceSpec" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:245:17: warning: no header providing "o2::analysis::femtoDream::FemtoDreamMath" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:298:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx` ```text PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:24:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:25:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:43:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:44:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:46:33: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:51:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:75:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:75:85: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:76:47: warning: no header providing "o2::framework::expressions::ifnode" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:76:85: warning: no header providing "o2::framework::expressions::nexp" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:76:189: warning: no header providing "ncheckbit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:80:47: warning: no header providing "o2::framework::expressions::ifnode" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:80:72: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:80:137: warning: no header providing "o2::framework::expressions::npow" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:145:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:154:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:157:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:157:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:181:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:185:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:201:79: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:203:79: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:207:110: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:212:16: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:245:10: warning: no header providing "o2::framework::DeviceSpec" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:353:19: warning: no header providing "o2::analysis::femtoDream::FemtoDreamMath" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:421:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx` ```text PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:28:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:30:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:44:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:45:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:46:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:49:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:50:25: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:50:46: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:51:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:53:47: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:88:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:88:85: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:89:47: warning: no header providing "o2::framework::expressions::ifnode" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:89:92: warning: no header providing "o2::framework::expressions::nexp" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:89:197: warning: no header providing "ncheckbit" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:93:47: warning: no header providing "o2::framework::expressions::ifnode" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:93:162: warning: no header providing "o2::framework::expressions::npow" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:158:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:167:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:170:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:170:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:194:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:198:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:214:79: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:216:79: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:220:110: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:225:16: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:257:40: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:259:42: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:265:10: warning: no header providing "o2::framework::DeviceSpec" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:373:19: warning: no header providing "o2::analysis::femtoDream::FemtoDreamMath" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:447:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Tasks/femtodreamPairCascadeCascade.cxx` ```text PWGCF/FemtoDream/Tasks/femtodreamPairCascadeCascade.cxx:22:1: warning: included header femtoDreamUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtodreamPairCascadeCascade.cxx:28:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtodreamPairCascadeCascade.cxx:31:1: warning: included header stat.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtodreamPairCascadeCascade.cxx:43:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtodreamPairCascadeCascade.cxx:44:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtodreamPairCascadeCascade.cxx:47:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtodreamPairCascadeCascade.cxx:49:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtodreamPairCascadeCascade.cxx:62:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtodreamPairCascadeCascade.cxx:82:26: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtodreamPairCascadeCascade.cxx:111:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtodreamPairCascadeCascade.cxx:184:32: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtodreamPairCascadeCascade.cxx:198:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtodreamPairCascadeCascade.cxx:198:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtodreamPairCascadeCascade.cxx:210:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtodreamPairCascadeCascade.cxx:211:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Tasks/femtodreamPairCascadeCascade.cxx:367:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Utils/femtoDreamCutCulator.cxx` ```text PWGCF/FemtoDream/Utils/femtoDreamCutCulator.cxx:17:1: warning: included header random is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Utils/femtoDreamCutCulator.cxx:20:1: warning: included header femtoDreamSelection.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Utils/femtoDreamCutCulator.cxx:21:1: warning: included header femtoDreamTrackSelection.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Utils/femtoDreamCutCulator.cxx:22:1: warning: included header FemtoDerived.h is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Utils/femtoDreamCutCulator.cxx:32:8: warning: no header providing "std::ifstream" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Utils/femtoDreamCutCulator.cxx:86:12: warning: no header providing "std::ofstream" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoDream/Utils/femtoDreamCutCulator.h` ```text PWGCF/FemtoDream/Utils/femtoDreamCutCulator.h:28:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGCF/FemtoDream/Utils/femtoDreamCutCulator.h:52:27: warning: no header providing "boost::property_tree::ptree" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Utils/femtoDreamCutCulator.h:55:42: warning: no header providing "boost::property_tree::ptree_error" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Utils/femtoDreamCutCulator.h:118:42: warning: variable 'obs' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Utils/femtoDreamCutCulator.h:146:34: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Utils/femtoDreamCutCulator.h:182:36: warning: variable 'obs' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Utils/femtoDreamCutCulator.h:220:46: warning: variable 'obs' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Utils/femtoDreamCutCulator.h:245:51: warning: no header providing "o2::aod::femtodreamparticle::cutContainerType" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Utils/femtoDreamCutCulator.h:246:26: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoDream/Utils/femtoDreamCutCulator.h:260:11: warning: variable 'input' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Utils/femtoDreamCutCulator.h:300:16: warning: variable 'signOffset' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoDream/Utils/femtoDreamCutCulator.h:388:17: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniverse3DContainer.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniverse3DContainer.h:21:1: warning: included header FemtoUniverseParticleHisto.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverse3DContainer.h:24:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverse3DContainer.h:26:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverse3DContainer.h:28:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverse3DContainer.h:33:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoUniverse/Core/FemtoUniverse3DContainer.h:83:146: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverse3DContainer.h:84:115: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverse3DContainer.h:97:130: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverse3DContainer.h:138:16: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverse3DContainer.h:151:143: warning: no header providing "o2::aod::femtouniverse_mc_particle::MCTypeName" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverse3DContainer.h:151:190: warning: no header providing "o2::aod::femtouniverse_mc_particle::MCType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverse3DContainer.h:270:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniverseAngularContainer.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniverseAngularContainer.h:24:1: warning: included header FemtoUniverseParticleHisto.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseAngularContainer.h:26:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseAngularContainer.h:29:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseAngularContainer.h:31:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseAngularContainer.h:33:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseAngularContainer.h:38:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoUniverse/Core/FemtoUniverseAngularContainer.h:62:7: warning: constructor does not initialize these fields: mPhiLow, mPhiHigh, deltaEta, deltaPhi [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Core/FemtoUniverseAngularContainer.h:80:111: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseAngularContainer.h:118:16: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseAngularContainer.h:127:77: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseAngularContainer.h:132:143: warning: no header providing "o2::aod::femtouniverse_mc_particle::MCTypeName" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseAngularContainer.h:132:190: warning: no header providing "o2::aod::femtouniverse_mc_particle::MCType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseAngularContainer.h:204:11: warning: variable 'femtoObs' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Core/FemtoUniverseAngularContainer.h:204:21: warning: variable 'femtoObsMC' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Core/FemtoUniverseAngularContainer.h:236:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniverseCascadeSelection.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniverseCascadeSelection.h:28:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCascadeSelection.h:31:1: warning: included header PID.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCascadeSelection.h:92:45: warning: no header providing "o2::aod::femtouniverseparticle::ParticleType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCascadeSelection.h:135:44: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCascadeSelection.h:302:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCascadeSelection.h:314:5: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCascadeSelection.h:316:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCascadeSelection.h:321:52: warning: no header providing "o2::aod::femtouniverseparticle::TrackType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCascadeSelection.h:322:52: warning: no header providing "o2::aod::femtouniverseparticle::CutContainerType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCascadeSelection.h:335:78: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniverseCollisionSelection.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniverseCollisionSelection.h:26:1: warning: included header string is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCollisionSelection.h:28:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoUniverse/Core/FemtoUniverseCollisionSelection.h:70:74: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCollisionSelection.h:75:69: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCollisionSelection.h:174:29: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCollisionSelection.h:175:29: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCollisionSelection.h:189:44: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniverseContainer.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniverseContainer.h:26:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseContainer.h:29:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseContainer.h:31:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseContainer.h:33:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseContainer.h:38:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoUniverse/Core/FemtoUniverseContainer.h:62:7: warning: constructor does not initialize these fields: mPhiLow, mPhiHigh, deltaEta, deltaPhi [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Core/FemtoUniverseContainer.h:80:109: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseContainer.h:82:128: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseContainer.h:92:152: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseContainer.h:109:101: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseContainer.h:135:16: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseContainer.h:144:77: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseContainer.h:238:11: warning: variable 'femtoObs' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Core/FemtoUniverseContainer.h:238:21: warning: variable 'femtoObsMC' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Core/FemtoUniverseContainer.h:280:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniverseCutculator.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniverseCutculator.h:28:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCutculator.h:31:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCutculator.h:49:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCutculator.h:52:27: warning: no header providing "boost::property_tree::ptree" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCutculator.h:55:42: warning: no header providing "boost::property_tree::ptree_error" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCutculator.h:115:48: warning: variable 'obs' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Core/FemtoUniverseCutculator.h:143:34: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCutculator.h:179:42: warning: variable 'obs' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Core/FemtoUniverseCutculator.h:204:54: warning: no header providing "o2::aod::femtouniverseparticle::CutContainerType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCutculator.h:205:26: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseCutculator.h:218:11: warning: variable 'input' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Core/FemtoUniverseCutculator.h:258:16: warning: variable 'signOffset' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:22:1: warning: included header FemtoUniverseAngularContainer.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:24:1: warning: included header FemtoUniverseFemtoContainer.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:46:7: warning: constructor does not initialize these fields: chosenRadii, cutDeltaPhiStarMax, cutDeltaPhiStarMin, cutDeltaEtaMax, cutDeltaEtaMin, magfield, cutPhiInvMassLow, cutPhiInvMassHigh [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:69:55: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:69:157: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:74:54: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:74:171: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:217:99: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:225:9: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:238:39: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:459:19: warning: no header providing "TVector2" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:511:9: warning: no header providing "TLorentzVector" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:513:50: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:514:50: warning: no header providing "o2::constants::physics::MassKMinus" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:719:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:761:20: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:783:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:815:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:817:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:818:38: warning: no header providing "std::asin" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:875:40: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:880:12: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCalculator.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCalculator.h:19:1: warning: included header FemtoUniverseParticleHisto.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCalculator.h:21:1: warning: included header FemtoDerived.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCalculator.h:35:19: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCalculator.h:48:30: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCalculator.h:50:30: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCalculator.h:81:16: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCalculator.h:81:43: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCalculator.h:81:70: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCalculator.h:91:29: warning: no header providing "std::exception" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCalculator.h:92:11: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCalculator.h:120:17: warning: no header providing "fmt::format" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCalculator.h:136:37: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCalculator.h:165:31: warning: member 'ccdb' of type 'o2::ccdb::BasicCCDBManager &' is a reference [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCalculator.h:166:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCorrection.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCorrection.h:23:1: warning: included header ConfigurableKinds.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCorrection.h:26:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCorrection.h:38:19: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCorrection.h:71:26: warning: no header providing "std::format" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCorrection.h:85:16: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCorrection.h:85:43: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCorrection.h:85:70: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCorrection.h:95:29: warning: no header providing "std::exception" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCorrection.h:96:11: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCorrection.h:109:47: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCorrection.h:120:13: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCorrection.h:226:17: warning: no header providing "fmt::format" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCorrection.h:253:31: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCorrection.h:275:25: warning: no header providing "std::ranges::distance" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCorrection.h:284:31: warning: member 'ccdb' of type 'o2::ccdb::BasicCCDBManager &' is a reference [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCorrection.h:285:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCorrection.h:288:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniverseEventHisto.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniverseEventHisto.h:20:1: warning: included header FemtoDerived.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEventHisto.h:24:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoUniverse/Core/FemtoUniverseEventHisto.h:29:7: warning: constructor does not initialize these fields: mHistogramRegistry [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Core/FemtoUniverseEventHisto.h:39:74: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseEventHisto.h:42:78: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:26:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:28:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:30:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:35:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:77:109: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:79:128: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:88:152: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:103:101: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:127:16: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:135:118: error: no member named 'femtouniverse_mc_particle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:135:165: error: no member named 'femtouniverse_mc_particle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:139:108: error: no member named 'femtouniverse_mc_particle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:139:155: error: no member named 'femtouniverse_mc_particle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:162:22: error: no member named 'femtouniverse_mc_particle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:167:78: error: no member named 'femtouniverse_mc_particle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:168:78: error: no member named 'femtouniverse_mc_particle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:169:78: error: no member named 'femtouniverse_mc_particle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:170:78: error: no member named 'femtouniverse_mc_particle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:171:78: error: no member named 'femtouniverse_mc_particle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:172:78: error: no member named 'femtouniverse_mc_particle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:173:78: error: no member named 'femtouniverse_mc_particle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:212:11: warning: variable 'femtoObs' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Core/FemtoUniverseFemtoContainer.h:212:21: warning: variable 'femtoObsMC' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniverseMath.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniverseMath.h:22:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseMath.h:23:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseMath.h:24:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseMath.h:27:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseMath.h:47:23: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseMath.h:52:37: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseMath.h:52:64: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseMath.h:56:17: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseMath.h:59:23: warning: no header providing "ROOT::Math::Boost" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseMath.h:109:22: warning: no header providing "ROOT::Math::PxPyPzEVector" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseMath.h:128:109: warning: no header providing "std::pow" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniverseObjectSelection.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniverseObjectSelection.h:24:1: warning: included header PID.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseObjectSelection.h:30:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoUniverse/Core/FemtoUniverseObjectSelection.h:31:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoUniverse/Core/FemtoUniverseObjectSelection.h:44:7: warning: constructor does not initialize these fields: mHistogramRegistry [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Core/FemtoUniverseObjectSelection.h:56:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseObjectSelection.h:57:150: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseObjectSelection.h:58:41: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseObjectSelection.h:59:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniversePairAngularWithCentMultKt.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniversePairAngularWithCentMultKt.h:37:13: error: unknown type name 'HistogramRegistry'; did you mean 'framework::HistogramRegistry'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairAngularWithCentMultKt.h:42:77: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairAngularWithCentMultKt.h:44:16: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairAngularWithCentMultKt.h:61:78: error: use of undeclared identifier 'HistType'; did you mean 'framework::HistType'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairAngularWithCentMultKt.h:61:78: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairAngularWithCentMultKt.h:65:16: warning: no header providing "std::replace" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairAngularWithCentMultKt.h:74:86: error: use of undeclared identifier 'HistType'; did you mean 'framework::HistType'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairAngularWithCentMultKt.h:78:65: error: use of undeclared identifier 'HistType'; did you mean 'framework::HistType'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairAngularWithCentMultKt.h:179:3: error: unknown type name 'HistogramRegistry'; did you mean 'framework::HistogramRegistry'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairAngularWithCentMultKt.h:187:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniversePairCleaner.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniversePairCleaner.h:34:7: warning: constructor does not initialize these fields: mHistogramRegistry [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Core/FemtoUniversePairCleaner.h:42:13: error: unknown type name 'HistogramRegistry'; did you mean 'framework::HistogramRegistry'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairCleaner.h:63:9: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairCleaner.h:188:3: error: unknown type name 'HistogramRegistry'; did you mean 'framework::HistogramRegistry'? [clang-diagnostic-error] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:23:1: warning: included header complex is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:41:7: warning: constructor does not initialize these fields: fbinctn, fbinctd [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:53:13: error: unknown type name 'HistogramRegistry'; did you mean 'framework::HistogramRegistry'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:57:5: error: unknown type name 'AxisSpec'; did you mean 'framework::AxisSpec'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:57:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:98:19: warning: unused local variable 'histTitle' of type 'std::string' (aka 'basic_string') [bugprone-unused-local-non-trivial-variable] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:107:21: warning: unused local variable 'histTitlekT' of type 'std::string' (aka 'basic_string') [bugprone-unused-local-non-trivial-variable] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:113:29: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:113:34: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:125:68: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:127:58: error: use of undeclared identifier 'kTH1D'; did you mean 'framework::kTH1D'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:127:58: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:130:58: error: use of undeclared identifier 'kTH1D'; did you mean 'framework::kTH1D'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:134:58: error: use of undeclared identifier 'kTH1D'; did you mean 'framework::kTH1D'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:137:58: error: use of undeclared identifier 'kTH1D'; did you mean 'framework::kTH1D'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:143:57: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:143:141: error: use of undeclared identifier 'kTH3D'; did you mean 'framework::kTH3D'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:143:141: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:182:55: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:185:9: warning: variable 'multbinval' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:273:11: warning: no header providing "o2::analysis::femto_universe::FemtoUniverseMath" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:292:22: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:297:5: warning: uninitialized record type: 'kYlm' [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:297:5: warning: no header providing "o2::analysis::femto_universe::FemtoUniverseSpherHarMath" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:395:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:415:3: error: unknown type name 'HistogramRegistry'; did you mean 'framework::HistogramRegistry'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h:416:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:37:13: error: unknown type name 'HistogramRegistry'; did you mean 'framework::HistogramRegistry'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:40:5: error: unknown type name 'AxisSpec'; did you mean 'framework::AxisSpec'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:40:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:41:5: error: unknown type name 'AxisSpec'; did you mean 'framework::AxisSpec'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:42:5: error: unknown type name 'AxisSpec'; did you mean 'framework::AxisSpec'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:43:5: error: unknown type name 'AxisSpec'; did you mean 'framework::AxisSpec'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:59:76: error: use of undeclared identifier 'HistType'; did you mean 'framework::HistType'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:59:76: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:63:16: warning: no header providing "std::replace" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:72:11: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:73:84: error: use of undeclared identifier 'HistType'; did you mean 'framework::HistType'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:78:80: error: use of undeclared identifier 'HistType'; did you mean 'framework::HistType'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:91:84: error: use of undeclared identifier 'HistType'; did you mean 'framework::HistType'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:95:65: error: use of undeclared identifier 'HistType'; did you mean 'framework::HistType'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:96:71: error: use of undeclared identifier 'HistType'; did you mean 'framework::HistType'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:291:3: error: unknown type name 'HistogramRegistry'; did you mean 'framework::HistogramRegistry'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:296:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h:31:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h:41:7: warning: constructor does not initialize these fields: mHistogramRegistry [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h:60:113: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h:63:95: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h:141:94: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h:170:143: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h:198:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h:240:18: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h:349:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h:400:15: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h:497:17: warning: unused local variable 'tempFitVarName' of type 'std::string' (aka 'basic_string') [bugprone-unused-local-non-trivial-variable] PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h:529:17: warning: unused local variable 'tempFitVarName' of type 'std::string' (aka 'basic_string') [bugprone-unused-local-non-trivial-variable] PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h:543:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniversePhiSelection.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniversePhiSelection.h:29:1: warning: included header PID.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePhiSelection.h:75:45: warning: no header providing "o2::aod::femtouniverseparticle::ParticleType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePhiSelection.h:91:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePhiSelection.h:126:44: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePhiSelection.h:148:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePhiSelection.h:287:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePhiSelection.h:294:5: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePhiSelection.h:296:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePhiSelection.h:300:39: warning: no header providing "o2::aod::femtouniverseparticle::ParticleTypeName" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePhiSelection.h:303:67: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePhiSelection.h:308:68: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePhiSelection.h:313:52: warning: no header providing "o2::aod::femtouniverseparticle::TrackType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePhiSelection.h:314:52: warning: no header providing "o2::aod::femtouniverseparticle::CutContainerType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePhiSelection.h:414:33: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePhiSelection.h:533:52: warning: no header providing "o2::constants::physics::MassPhi" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePhiSelection.h:623:46: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniversePhiSelection.h:624:46: warning: no header providing "o2::constants::physics::MassKMinus" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:24:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:26:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:28:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:57:7: warning: constructor does not initialize these fields: fbinctn, fbinctd [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:70:13: error: unknown type name 'HistogramRegistry'; did you mean 'framework::HistogramRegistry'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:101:16: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:102:17: warning: unused local variable 'folderName' of type 'std::string' (aka 'basic_string') [bugprone-unused-local-non-trivial-variable] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:102:118: error: no member named 'femtouniverse_mc_particle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:102:165: error: no member named 'femtouniverse_mc_particle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:113:52: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:113:128: error: use of undeclared identifier 'kTH1D'; did you mean 'framework::kTH1D'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:113:128: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:114:128: error: use of undeclared identifier 'kTH1D'; did you mean 'framework::kTH1D'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:116:128: error: use of undeclared identifier 'kTH1D'; did you mean 'framework::kTH1D'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:117:128: error: use of undeclared identifier 'kTH1D'; did you mean 'framework::kTH1D'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:123:41: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:123:81: error: use of undeclared identifier 'kTH3D'; did you mean 'framework::kTH3D'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:123:81: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:126:81: error: use of undeclared identifier 'kTH3D'; did you mean 'framework::kTH3D'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:129:19: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:129:24: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:162:53: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:175:5: warning: uninitialized record type: 'kYlm' [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:242:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:260:3: error: unknown type name 'HistogramRegistry'; did you mean 'framework::HistogramRegistry'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:261:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniverseSelection.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniverseSelection.h:104:73: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniverseSoftPionRemoval.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniverseSoftPionRemoval.h:33:7: warning: constructor does not initialize these fields: mHistogramRegistry [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Core/FemtoUniverseSoftPionRemoval.h:41:13: error: unknown type name 'HistogramRegistry'; did you mean 'framework::HistogramRegistry'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseSoftPionRemoval.h:45:88: error: use of undeclared identifier 'kTH2F'; did you mean 'framework::kTH2F'? [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseSoftPionRemoval.h:45:88: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSoftPionRemoval.h:62:9: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSoftPionRemoval.h:69:49: warning: no header providing "o2::constants::physics::MassPiPlus" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSoftPionRemoval.h:70:49: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSoftPionRemoval.h:80:20: error: use of undeclared identifier 'RecoDecay' [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseSoftPionRemoval.h:115:3: error: unknown type name 'HistogramRegistry'; did you mean 'framework::HistogramRegistry'? [clang-diagnostic-error] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniverseSpherHarMath.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniverseSpherHarMath.h:19:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSpherHarMath.h:20:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSpherHarMath.h:21:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSpherHarMath.h:22:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSpherHarMath.h:24:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSpherHarMath.h:26:1: warning: included header vector is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSpherHarMath.h:39:12: warning: variable 'oneoversqrtpi' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Core/FemtoUniverseSpherHarMath.h:39:48: error: no member named 'constants' in namespace 'o2' [clang-diagnostic-error] PWGCF/FemtoUniverse/Core/FemtoUniverseSpherHarMath.h:45:34: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSpherHarMath.h:170:12: warning: variable 'ctheta' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Core/FemtoUniverseSpherHarMath.h:170:20: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Core/FemtoUniverseSpherHarMath.h:173:27: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSpherHarMath.h:177:16: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSpherHarMath.h:185:12: warning: variable 'lpol' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Core/FemtoUniverseSpherHarMath.h:195:29: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSpherHarMath.h:196:29: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseSpherHarMath.h:217:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h:24:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h:25:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h:28:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h:73:3: warning: constructor does not initialize these fields: nTPCsFracMaxSel, nITSclsMin, nITSclsIbMin [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h:152:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h:166:91: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h:190:36: warning: no header providing "o2::analysis::femto_universe::femto_universe_selection::SelectionType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h:270:120: warning: no header providing "o2::analysis::femto_universe::femto_universe_selection::kEqual" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h:271:120: warning: no header providing "o2::analysis::femto_universe::femto_universe_selection::kLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h:272:120: warning: no header providing "o2::analysis::femto_universe::femto_universe_selection::kUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h:273:120: warning: no header providing "o2::analysis::femto_universe::femto_universe_selection::kAbsUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h:313:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h:316:98: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h:318:118: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h:323:124: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h:376:99: warning: no header providing "o2::analysis::femto_universe::femto_universe_selection::kAbsLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h:464:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/FemtoUniverseV0Selection.h` ```text PWGCF/FemtoUniverse/Core/FemtoUniverseV0Selection.h:26:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseV0Selection.h:29:1: warning: included header PID.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseV0Selection.h:73:45: warning: no header providing "o2::aod::femtouniverseparticle::ParticleType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseV0Selection.h:89:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseV0Selection.h:124:44: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseV0Selection.h:146:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseV0Selection.h:285:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseV0Selection.h:291:5: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseV0Selection.h:293:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseV0Selection.h:297:39: warning: no header providing "o2::aod::femtouniverseparticle::ParticleTypeName" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseV0Selection.h:300:67: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseV0Selection.h:305:68: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseV0Selection.h:326:29: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseV0Selection.h:339:52: warning: no header providing "o2::aod::femtouniverseparticle::TrackType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseV0Selection.h:340:52: warning: no header providing "o2::aod::femtouniverseparticle::CutContainerType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseV0Selection.h:440:32: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/FemtoUniverseV0Selection.h:559:52: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Core/femtoUtils.h` ```text PWGCF/FemtoUniverse/Core/femtoUtils.h:22:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Core/femtoUtils.h:44:5: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/femtoUtils.h:46:15: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Core/femtoUtils.h:106:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/DataModel/FemtoDerived.h` ```text PWGCF/FemtoUniverse/DataModel/FemtoDerived.h:19:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/DataModel/FemtoDerived.h:26:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/DataModel/FemtoDerived.h:28:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/DataModel/FemtoDerived.h:79:23: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/DataModel/FemtoDerived.h:82:26: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/DataModel/FemtoDerived.h:98:40: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/DataModel/FemtoDerived.h:127:32: warning: no header providing "int8_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Macros/calculateEfficiencyCorrection.cxx` ```text PWGCF/FemtoUniverse/Macros/calculateEfficiencyCorrection.cxx:17:1: warning: included header TFolder.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Macros/calculateEfficiencyCorrection.cxx:19:1: warning: included header TGridResult.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Macros/calculateEfficiencyCorrection.cxx:20:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Macros/calculateEfficiencyCorrection.cxx:21:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Macros/calculateEfficiencyCorrection.cxx:22:1: warning: included header TH3F.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Macros/calculateEfficiencyCorrection.cxx:23:1: warning: included header TSystem.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Macros/calculateEfficiencyCorrection.cxx:24:1: warning: included header unistd.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Macros/calculateEfficiencyCorrection.cxx:37:23: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Macros/calculateEfficiencyCorrection.cxx:51:17: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Macros/calculateEfficiencyCorrection.cxx:101:10: warning: no header providing "std::exit" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Macros/calculateEfficiencyCorrection.cxx:115:12: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Macros/calculateEfficiencyCorrection.cxx:115:26: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Macros/calculateEfficiencyCorrection.cxx:115:40: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Macros/calculateEfficiencyCorrection.cxx:224:18: warning: no header providing "getopt" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Macros/calculateEfficiencyCorrection.cxx:227:19: warning: no header providing "optarg" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerMCTruthTask.cxx` ```text PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerMCTruthTask.cxx:75:8: warning: constructor does not initialize these fields: mRunNumber, mMagField, ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerMCTruthTask.cxx:212:104: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerMCTruthTask.cxx:212:111: warning: no header providing "kPiPlus" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerMCTruthTask.cxx:212:121: warning: no header providing "kKPlus" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx` ```text PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:23:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:25:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:34:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:39:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:42:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:43:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:70:8: warning: constructor does not initialize these fields: mRunNumber, mMagField, ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:72:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:79:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:89:60: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:118:95: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:120:48: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:124:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:126:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:131:108: warning: no header providing "o2::analysis::femto_universe::femto_universe_selection::kEqual" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:132:108: warning: no header providing "o2::analysis::femto_universe::femto_universe_selection::kLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:133:108: warning: no header providing "o2::analysis::femto_universe::femto_universe_selection::kUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:134:107: warning: no header providing "o2::analysis::femto_universe::femto_universe_selection::kAbsUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:157:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:157:32: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:157:59: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:157:86: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:180:34: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:296:27: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerReducedTask.cxx:334:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx` ```text PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:38:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:53:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:55:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:58:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:60:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:105:8: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:114:8: warning: constructor does not initialize these fields: mMagField, ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:115:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:124:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:143:27: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:147:62: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:198:103: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:361:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:409:18: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:430:16: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:471:10: warning: no header providing "UInt_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:535:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:538:48: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:560:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:563:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:579:125: warning: no header providing "o2::analysis::femto_universe::femto_universe_selection::kEqual" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:580:125: warning: no header providing "o2::analysis::femto_universe::femto_universe_selection::kLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:581:125: warning: no header providing "o2::analysis::femto_universe::femto_universe_selection::kUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:582:124: warning: no header providing "o2::analysis::femto_universe::femto_universe_selection::kAbsUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:615:167: warning: no header providing "o2::analysis::femto_universe::femto_universe_selection::kAbsLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:705:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:705:32: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:705:59: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:705:86: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:728:34: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:750:44: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:844:5: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:882:3: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:1063:87: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:1063:182: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:1063:274: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:1170:81: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:1171:82: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:1172:86: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:1174:88: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:1175:81: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:1176:80: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:1579:57: warning: no header providing "o2::aod::hf_cand_2prong::DecayType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:1629:41: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:2095:52: warning: no header providing "std::optional" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:2095:66: warning: no header providing "std::reference_wrapper" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:2095:123: warning: no header providing "std::nullopt" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:2109:7: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:2182:17: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:2327:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx` ```text PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:22:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:31:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:36:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:39:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:40:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:75:8: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:84:8: warning: constructor does not initialize these fields: mRunNumber, mMagField, ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:86:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:90:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:105:60: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:189:33: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:217:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:221:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:223:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:235:53: warning: no header providing "o2::analysis::femto_universe::femto_universe_selection::kEqual" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:237:53: warning: no header providing "o2::analysis::femto_universe::femto_universe_selection::kLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:239:53: warning: no header providing "o2::analysis::femto_universe::femto_universe_selection::kUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:253:53: warning: no header providing "o2::analysis::femto_universe::femto_universe_selection::kAbsUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:260:53: warning: no header providing "o2::analysis::femto_universe::femto_universe_selection::kAbsLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:306:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:306:32: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:306:59: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:307:34: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:314:31: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:335:34: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:474:33: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Tasks/femtoUniverseCutCulator.cxx` ```text PWGCF/FemtoUniverse/Tasks/femtoUniverseCutCulator.cxx:19:1: warning: included header FemtoUniverseSelection.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseCutCulator.cxx:20:1: warning: included header FemtoUniverseTrackSelection.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseCutCulator.cxx:21:1: warning: included header FemtoDerived.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseCutCulator.cxx:25:1: warning: included header random is not used directly [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx` ```text PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:20:1: warning: included header femtoUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:23:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:24:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:27:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:28:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:48:8: warning: constructor does not initialize these fields: vPIDPartOne [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:49:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:51:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:51:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:54:27: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:74:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:79:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:80:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:80:85: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:80:184: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:81:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:97:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:110:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:116:16: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:219:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:240:81: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugTrack.cxx:256:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx` ```text PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx:24:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx:25:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx:29:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx:30:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx:32:1: warning: included header PID.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx:45:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx:47:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx:49:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx:52:27: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx:53:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx:57:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx:78:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx:80:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx:84:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx:93:48: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx:97:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx:104:73: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx:153:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx` ```text PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:23:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:35:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:36:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:36:45: warning: no header providing "o2::aod::FDParticles" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:36:63: warning: no header providing "o2::aod::FDExtParticles" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:36:84: warning: no header providing "o2::aod::FDMCLabels" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:37:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:37:69: warning: no header providing "o2::aod::femtouniverseparticle::fdCollisionId" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:39:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:46:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:46:29: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:46:50: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:47:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:47:55: warning: no header providing "o2::aod::FdCollisions" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:52:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:57:27: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:115:16: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:116:16: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:116:101: warning: no header providing "o2::aod::femtouniverseparticle::ParticleType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:123:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:123:78: warning: no header providing "o2::aod::femtouniverseparticle::partType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:123:90: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:123:188: warning: no header providing "o2::aod::femtouniverseparticle::pt" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:123:300: warning: no header providing "o2::aod::femtouniverseparticle::eta" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:161:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:166:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:170:73: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:204:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:210:16: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:281:16: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:415:99: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:430:79: warning: no header providing "o2::aod::femtouniverse_mc_particle::ParticleOriginMCTruth" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:678:58: warning: no header providing "o2::aod::FdMCParticles" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:702:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx` ```text PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:21:1: warning: included header FemtoDerived.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:22:1: warning: included header LFResonanceTables.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:24:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:31:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:36:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:38:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:53:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:55:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:58:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:58:58: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:69:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:82:60: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:90:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:100:78: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:102:112: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:103:82: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:103:134: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:104:98: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:212:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:219:20: warning: no header providing "TMath::Hypot" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:261:27: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:290:31: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyTask.cxx:382:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Tasks/femtoUniverseHashTask.cxx` ```text PWGCF/FemtoUniverse/Tasks/femtoUniverseHashTask.cxx:21:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseHashTask.cxx:32:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseHashTask.cxx:38:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniverseHashTask.cxx:40:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx` ```text PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:22:1: warning: included header femtoUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:29:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:30:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:47:8: warning: constructor does not initialize these fields: pdgMC [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:49:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:50:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:51:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:55:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:57:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:95:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:113:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:113:29: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:113:50: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:114:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:118:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:118:89: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:153:37: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:161:19: warning: no header providing "TFile" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:162:19: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:176:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:202:22: warning: no header providing "TMath::Hypot" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:209:52: warning: no header providing "o2::aod::pidtpc_tiny::binning" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:218:52: warning: no header providing "o2::aod::pidtof_tiny::binning" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:233:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:237:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:248:38: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:263:37: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:264:45: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:272:65: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:354:13: warning: variable 'posChildTPC' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:354:26: warning: variable 'negChildTPC' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:354:39: warning: variable 'bachelorTPC' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:354:52: warning: variable 'posChildTOF' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:354:65: warning: variable 'negChildTOF' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:354:78: warning: variable 'bachelorTOF' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:378:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:404:40: warning: no header providing "std::experimental::is_detected" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:405:15: warning: variable 'posChildTPC' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:405:28: warning: variable 'negChildTPC' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:405:41: warning: variable 'bachelorTPC' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:405:54: warning: variable 'posChildTOF' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:405:67: warning: variable 'negChildTOF' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:405:80: warning: variable 'bachelorTOF' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:688:5: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:688:41: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx` ```text PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:28:1: warning: included header femtoUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:31:1: warning: included header HfHelper.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:33:1: warning: included header CandidateReconstructionTables.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:34:1: warning: included header CandidateSelectionTables.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:42:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:43:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:60:14: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:68:74: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:77:39: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:83:8: warning: constructor does not initialize these fields: pdgMC, vPIDTrack [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:85:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:87:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:88:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:89:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:95:27: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:96:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:131:18: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:161:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:161:356: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:163:229: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:206:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:212:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:218:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:218:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:249:3: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:253:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:262:24: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:266:88: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:286:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:292:16: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:310:16: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:363:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:368:103: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:375:86: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:596:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:807:11: warning: variable 'tpcNSigmaPr' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:807:24: warning: variable 'tofNSigmaPr' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:807:37: warning: variable 'tpcNSigmaPi' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:807:50: warning: variable 'tofNSigmaPi' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:807:63: warning: variable 'tpcNSigmaKa' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:807:76: warning: variable 'tofNSigmaKa' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:1299:39: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:1440:46: warning: no header providing "o2::constants::physics::Pdg" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackD0.cxx:1441:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx` ```text PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:29:1: warning: included header femtoUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:36:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:37:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:60:8: warning: constructor does not initialize these fields: pdg, vPIDTrack, vPIDNucleus [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:62:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:67:27: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:68:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:74:18: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:108:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:111:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:111:35: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:112:43: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:115:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:116:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:129:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:129:94: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:172:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:176:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:184:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:184:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:238:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:344:25: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:406:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:409:65: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:529:100: warning: no header providing "o2::analysis::femto_universe::femto_universe_container::EventType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:621:7: warning: Value stored to 'fillQA' is never read [clang-analyzer-deadcode.DeadStores] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:624:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackNucleus.cxx:654:7: warning: Value stored to 'fillQA' is never read [clang-analyzer-deadcode.DeadStores] ``` #### `PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx` ```text PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:35:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:36:1: warning: included header TH1.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:59:8: warning: constructor does not initialize these fields: pdgMC [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:61:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:63:43: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:65:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:66:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:71:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:73:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:73:29: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:73:50: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:74:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:110:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:110:95: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:158:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:165:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:181:50: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:190:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:190:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:203:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:209:16: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:380:29: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:385:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:390:78: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:400:32: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:406:86: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:410:103: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:438:100: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:487:95: warning: no header providing "std::nullptr_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackPhi.cxx:647:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx` ```text PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:25:1: warning: included header FemtoUniverseTrackSelection.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:32:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:33:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:34:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:57:8: warning: constructor does not initialize these fields: vPIDPartOne, vPIDPartTwo [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:58:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:59:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:64:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:64:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:72:16: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:76:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:76:83: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:77:18: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:106:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:110:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:116:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:116:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:140:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:144:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:153:68: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:259:100: warning: no header providing "o2::analysis::femto_universe::femto_universe_container::EventType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack.cxx:287:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx` ```text PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:26:1: warning: included header femtoUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:33:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:34:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:60:8: warning: constructor does not initialize these fields: pdg, vPIDPartOne, vPIDPartTwo, randgen [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:62:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:67:27: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:68:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:73:18: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:83:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:85:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:86:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:86:35: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:87:43: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:88:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:105:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:105:93: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:105:191: warning: no header providing "o2::framework::expressions::as" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:105:194: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:152:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:156:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:164:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:164:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:218:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:249:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:255:16: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:374:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:381:68: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:458:95: warning: no header providing "std::nullptr_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:517:14: warning: variable 'rand' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:553:34: warning: no header providing "std::is_same" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:653:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:725:14: warning: variable 'rand' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx` ```text PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:56:8: warning: constructor does not initialize these fields: pdgMC, vPIDPartOne, vPIDPartTwo [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:57:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:62:27: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:63:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:68:18: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:75:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:77:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:77:27: warning: no header providing "requireGlobalTrackInFilter" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:78:35: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:79:43: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:82:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:83:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:97:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:97:93: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:140:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:145:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:152:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:152:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:174:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:197:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:203:16: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:266:25: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:322:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:325:156: warning: no header providing "std::nullopt" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:330:68: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:349:32: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackExtended.cxx:593:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx` ```text PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:28:1: warning: included header femtoUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:35:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:36:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:40:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:54:31: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:61:8: warning: constructor does not initialize these fields: pdg, vPIDPartOne, vPIDPartTwo [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:63:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:68:27: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:69:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:74:18: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:82:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:84:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:84:35: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:85:43: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:88:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:89:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:102:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:102:93: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:137:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:141:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:149:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:149:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:197:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:225:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:231:18: warning: no header providing "TMath::Hypot" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:295:25: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:339:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:346:68: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:547:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx` ```text PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:21:1: warning: included header FemtoUniverseTrackSelection.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:22:1: warning: included header femtoUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:28:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:29:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:30:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:33:1: warning: included header random is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:43:8: warning: constructor does not initialize these fields: vPIDPartOne, vPIDPartTwo [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:44:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:45:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:50:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:60:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:60:83: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:61:150: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:89:16: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:92:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:96:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:103:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:103:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:118:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:125:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:134:68: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:172:67: warning: no header providing "o2::constants::physics::Pdg" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:241:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx` ```text PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:55:8: warning: constructor does not initialize these fields: pdg, vPIDPartOne, vPIDPartTwo [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:57:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:62:27: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:63:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:69:18: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:76:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:78:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:78:35: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:79:43: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:82:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:83:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:102:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:102:93: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:102:191: warning: no header providing "o2::framework::expressions::as" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:102:194: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:152:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:156:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:164:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:164:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:215:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:245:19: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:247:19: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:303:7: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:330:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:339:67: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:359:113: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:476:102: warning: no header providing "o2::analysis::femto_universe::femto_universe_container::EventType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:588:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:806:7: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:825:7: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ``` #### `PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx` ```text PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:25:1: warning: included header femtoUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:32:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:33:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:65:8: warning: constructor does not initialize these fields: pdg, vPIDPartOne, vPIDPartTwo, randgen [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:67:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:72:27: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:73:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:81:18: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:114:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:116:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:116:35: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:117:43: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:122:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:123:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:138:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:138:93: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:138:191: warning: no header providing "o2::framework::expressions::as" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:138:194: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:190:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:194:58: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:203:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:203:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:228:3: warning: no header providing "o2::analysis::femto_universe::FemtoUniverseContainer" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:228:52: warning: no header providing "o2::analysis::femto_universe::femto_universe_container::EventType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:228:95: warning: no header providing "o2::analysis::femto_universe::femto_universe_container::Observable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:250:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:281:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:287:16: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:414:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:421:68: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:588:16: warning: variable 'rand' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:623:16: warning: variable 'kv' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:646:25: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:721:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:826:16: warning: variable 'rand' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:946:14: warning: variable 'rand' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:975:14: warning: variable 'kv' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:1265:14: warning: variable 'rand' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx` ```text PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:49:8: warning: constructor does not initialize these fields: pdgMC [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:51:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:53:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:54:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:54:45: warning: no header providing "o2::aod::FDParticles" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:54:63: warning: no header providing "o2::aod::FDExtParticles" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:55:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:55:69: warning: no header providing "o2::aod::femtouniverseparticle::fdCollisionId" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:57:84: warning: no header providing "o2::aod::FDMCLabels" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:57:101: warning: no header providing "o2::aod::FDExtMCParticles" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:61:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:65:27: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:68:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:80:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:80:29: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:80:50: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:81:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:81:55: warning: no header providing "o2::aod::FdCollisions" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:85:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:85:77: warning: no header providing "o2::aod::femtouniverseparticle::partType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:85:89: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:85:125: warning: no header providing "o2::aod::femtouniverseparticle::ParticleType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:85:180: warning: no header providing "o2::aod::femtouniverseparticle::sign" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:85:188: warning: no header providing "o2::framework::expressions::as" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:85:191: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:85:271: warning: no header providing "o2::aod::femtouniverseparticle::eta" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:85:319: warning: no header providing "o2::aod::femtouniverseparticle::pt" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:90:179: warning: no header providing "o2::aod::femtouniverseparticle::mAntiLambda" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:144:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:179:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:193:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:195:20: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:233:52: warning: no header providing "o2::aod::pidtpc_tiny::binning" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:234:52: warning: no header providing "o2::aod::pidtof_tiny::binning" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:257:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:260:84: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:281:65: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:284:93: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:358:61: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:365:84: warning: no header providing "std::nullptr_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:384:40: warning: no header providing "std::experimental::is_detected" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:489:26: warning: no header providing "std::is_same" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:677:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:685:101: warning: no header providing "o2::aod::FdMCParticles" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:827:5: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:827:41: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:827:76: warning: no header providing "o2::aod::femtouniversecollision::MultNtr" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:828:76: warning: no header providing "o2::aod::femtouniversecollision::MultV0M" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx` ```text PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:25:1: warning: included header femtoUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:32:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:33:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:51:8: warning: constructor does not initialize these fields: pdg, pdgMC [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:53:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:56:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:58:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:59:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:68:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:72:27: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:75:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:85:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:85:29: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:85:50: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:86:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:90:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:90:85: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:144:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:197:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:215:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:217:20: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:241:52: warning: no header providing "o2::aod::pidtpc_tiny::binning" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:243:52: warning: no header providing "o2::aod::pidtof_tiny::binning" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:256:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:260:84: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:282:122: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:292:93: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:393:68: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:419:84: warning: no header providing "std::nullptr_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:511:30: warning: no header providing "std::is_same" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:573:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:758:5: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Helicity.cxx:758:41: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx` ```text PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:21:1: warning: included header femtoUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:27:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:28:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:29:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:32:1: warning: included header set is not used directly [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:44:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:45:31: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:48:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:50:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:50:29: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:50:50: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:51:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:87:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:88:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:105:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:105:81: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:135:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:160:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:184:52: warning: no header providing "o2::aod::pidtpc_tiny::binning" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:193:52: warning: no header providing "o2::aod::pidtof_tiny::binning" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:199:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:244:40: warning: no header providing "std::experimental::is_detected" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:359:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:371:5: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskV0CascadeExtended.cxx:371:41: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/Core/FemtoWorldCollisionSelection.h` ```text PWGCF/FemtoWorld/Core/FemtoWorldCollisionSelection.h:20:1: warning: included header string is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldCollisionSelection.h:21:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldCollisionSelection.h:27:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoWorld/Core/FemtoWorldCollisionSelection.h:63:74: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldCollisionSelection.h:68:69: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/Core/FemtoWorldContainer.h` ```text PWGCF/FemtoWorld/Core/FemtoWorldContainer.h:26:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldContainer.h:27:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldContainer.h:32:1: warning: included header TRandom.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldContainer.h:34:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoWorld/Core/FemtoWorldContainer.h:58:7: warning: constructor does not initialize these fields: mPhiLow, mPhiHigh [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoWorld/Core/FemtoWorldContainer.h:84:16: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldContainer.h:97:108: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldContainer.h:99:127: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldContainer.h:107:109: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldContainer.h:108:113: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldContainer.h:128:11: warning: variable 'femtoObs' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoWorld/Core/FemtoWorldContainer.h:187:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h` ```text PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:37:7: warning: constructor does not initialize these fields: deltaPhiMax, deltaEtaMax, magfield [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:43:13: error: unknown type name 'HistogramRegistry'; did you mean 'framework::HistogramRegistry'? [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:43:42: error: unknown type name 'HistogramRegistry'; did you mean 'framework::HistogramRegistry'? [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:53:51: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:53:149: error: use of undeclared identifier 'kTH2F'; did you mean 'framework::kTH2F'? [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:53:149: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:54:149: error: use of undeclared identifier 'kTH2F'; did you mean 'framework::kTH2F'? [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:57:165: error: use of undeclared identifier 'kTH2F'; did you mean 'framework::kTH2F'? [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:64:151: error: use of undeclared identifier 'kTH2F'; did you mean 'framework::kTH2F'? [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:65:151: error: use of undeclared identifier 'kTH2F'; did you mean 'framework::kTH2F'? [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:68:167: error: use of undeclared identifier 'kTH2F'; did you mean 'framework::kTH2F'? [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:88:9: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:136:3: error: unknown type name 'HistogramRegistry'; did you mean 'framework::HistogramRegistry'? [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:137:3: error: unknown type name 'HistogramRegistry'; did you mean 'framework::HistogramRegistry'? [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:138:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:154:20: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:163:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:186:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:187:36: warning: no header providing "std::asin" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:203:14: error: use of undeclared identifier 'TVector2' [clang-diagnostic-error] ``` #### `PWGCF/FemtoWorld/Core/FemtoWorldEventHisto.h` ```text PWGCF/FemtoWorld/Core/FemtoWorldEventHisto.h:20:1: warning: included header FemtoWorldDerived.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldEventHisto.h:23:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoWorld/Core/FemtoWorldEventHisto.h:28:7: warning: constructor does not initialize these fields: mHistogramRegistry [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoWorld/Core/FemtoWorldEventHisto.h:38:74: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/Core/FemtoWorldMath.h` ```text PWGCF/FemtoWorld/Core/FemtoWorldMath.h:20:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldMath.h:21:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldMath.h:22:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldMath.h:23:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldMath.h:25:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldMath.h:44:23: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldMath.h:49:37: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldMath.h:49:64: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldMath.h:53:17: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldMath.h:56:23: warning: no header providing "ROOT::Math::Boost" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldMath.h:77:22: warning: no header providing "ROOT::Math::PxPyPzEVector" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/Core/FemtoWorldObjectSelection.h` ```text PWGCF/FemtoWorld/Core/FemtoWorldObjectSelection.h:21:1: warning: included header PID.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldObjectSelection.h:24:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoWorld/Core/FemtoWorldObjectSelection.h:37:7: warning: constructor does not initialize these fields: mHistogramRegistry [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoWorld/Core/FemtoWorldObjectSelection.h:45:22: error: no member named 'femtoworldparticle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldObjectSelection.h:49:64: error: no member named 'femtoworldparticle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldObjectSelection.h:50:41: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldObjectSelection.h:50:60: error: no member named 'femtoworldparticle' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldObjectSelection.h:51:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/Core/FemtoWorldPairCleaner.h` ```text PWGCF/FemtoWorld/Core/FemtoWorldPairCleaner.h:23:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoWorld/Core/FemtoWorldPairCleaner.h:33:7: warning: constructor does not initialize these fields: mHistogramRegistry [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoWorld/Core/FemtoWorldPairCleaner.h:62:9: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPairCleaner.h:72:7: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/Core/FemtoWorldPairWithCentrality.h` ```text PWGCF/FemtoWorld/Core/FemtoWorldPairWithCentrality.h:17:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPairWithCentrality.h:21:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoWorld/Core/FemtoWorldPairWithCentrality.h:22:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoWorld/Core/FemtoWorldPairWithCentrality.h:39:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPairWithCentrality.h:48:76: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPairWithCentrality.h:86:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/Core/FemtoWorldParticleHisto.h` ```text PWGCF/FemtoWorld/Core/FemtoWorldParticleHisto.h:24:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoWorld/Core/FemtoWorldParticleHisto.h:35:7: warning: constructor does not initialize these fields: mHistogramRegistry [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoWorld/Core/FemtoWorldParticleHisto.h:52:100: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldParticleHisto.h:54:104: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldParticleHisto.h:55:117: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldParticleHisto.h:71:20: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldParticleHisto.h:72:111: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldParticleHisto.h:79:9: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldParticleHisto.h:164:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/Core/FemtoWorldPhiSelection.h` ```text PWGCF/FemtoWorld/Core/FemtoWorldPhiSelection.h:31:1: warning: included header PID.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPhiSelection.h:32:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPhiSelection.h:36:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoWorld/Core/FemtoWorldPhiSelection.h:90:42: warning: no header providing "o2::aod::femtoworldparticle::ParticleType" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPhiSelection.h:107:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPhiSelection.h:138:81: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPhiSelection.h:157:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPhiSelection.h:274:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPhiSelection.h:278:5: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPhiSelection.h:280:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPhiSelection.h:282:84: warning: no header providing "o2::aod::femtoworldparticle::ParticleTypeName" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPhiSelection.h:284:98: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPhiSelection.h:286:103: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPhiSelection.h:298:99: warning: no header providing "o2::aod::femtoworldparticle::TrackType" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPhiSelection.h:298:146: warning: no header providing "o2::aod::femtoworldparticle::cutContainerType" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPhiSelection.h:560:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPhiSelection.h:546:7: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ``` #### `PWGCF/FemtoWorld/Core/FemtoWorldPionContainer.h` ```text PWGCF/FemtoWorld/Core/FemtoWorldPionContainer.h:26:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPionContainer.h:27:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPionContainer.h:32:1: warning: included header TRandom.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPionContainer.h:34:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoWorld/Core/FemtoWorldPionContainer.h:62:7: warning: constructor does not initialize these fields: mPhiLow, mPhiHigh [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoWorld/Core/FemtoWorldPionContainer.h:88:16: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPionContainer.h:101:108: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPionContainer.h:103:127: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPionContainer.h:111:109: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPionContainer.h:112:113: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldPionContainer.h:132:11: warning: variable 'femtoObs' is not initialized [cppcoreguidelines-init-variables] PWGCF/FemtoWorld/Core/FemtoWorldPionContainer.h:174:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/Core/FemtoWorldSelection.h` ```text PWGCF/FemtoWorld/Core/FemtoWorldSelection.h:80:17: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldSelection.h:85:17: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldSelection.h:89:17: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldSelection.h:89:50: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldSelection.h:101:73: error: unknown type name 'size_t' [clang-diagnostic-error] ``` #### `PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h` ```text PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:488:13: error: no member named 'checkSelectionSetBit' in 'o2::analysis::femtoWorld::FemtoWorldSelection' [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:490:13: error: no member named 'checkSelectionSetBit' in 'o2::analysis::femtoWorld::FemtoWorldSelection' [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:536:11: error: no member named 'checkSelectionSetBit' in 'o2::analysis::femtoWorld::FemtoWorldSelection' [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:24:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:25:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:28:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:34:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:36:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:71:3: warning: constructor does not initialize these fields: nITSclsMin, nITSclsIbMin [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:111:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:147:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:161:15: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:161:85: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:180:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:186:31: warning: no header providing "o2::analysis::femtoWorld::femtoWorldSelection::SelectionType" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:256:110: warning: no header providing "o2::analysis::femtoWorld::femtoWorldSelection::kEqual" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:257:110: warning: no header providing "o2::analysis::femtoWorld::femtoWorldSelection::kLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:258:110: warning: no header providing "o2::analysis::femtoWorld::femtoWorldSelection::kUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:259:110: warning: no header providing "o2::analysis::femtoWorld::femtoWorldSelection::kAbsUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:297:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:300:98: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:302:102: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:307:124: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:357:88: warning: no header providing "o2::analysis::femtoWorld::femtoWorldSelection::kAbsLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:441:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/Core/FemtoWorldUtils.h` ```text PWGCF/FemtoWorld/Core/FemtoWorldUtils.h:21:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldUtils.h:23:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldUtils.h:49:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGCF/FemtoWorld/Core/FemtoWorldUtils.h:49:9: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldUtils.h:53:3: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldUtils.h:53:96: warning: no header providing "std::endl" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h` ```text PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:26:1: warning: included header PID.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:27:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:30:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:84:42: warning: no header providing "o2::aod::femtoworldparticle::ParticleType" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:95:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:127:15: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:127:79: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:146:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:263:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:267:5: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:269:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:271:84: warning: no header providing "o2::aod::femtoworldparticle::ParticleTypeName" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:273:98: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:275:103: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:282:115: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:287:98: warning: no header providing "o2::aod::femtoworldparticle::TrackType" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:287:145: warning: no header providing "o2::aod::femtoworldparticle::cutContainerType" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:328:14: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:449:28: error: use of undeclared identifier 'TDatabasePDG' [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:489:13: error: no member named 'checkSelectionSetBit' in 'o2::analysis::femtoWorld::FemtoWorldSelection' [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:513:11: error: no member named 'checkSelectionSetBit' in 'o2::analysis::femtoWorld::FemtoWorldSelection' [clang-diagnostic-error] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:383:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:452:21: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ``` #### `PWGCF/FemtoWorld/DataModel/FemtoWorldDerived.h` ```text PWGCF/FemtoWorld/DataModel/FemtoWorldDerived.h:15:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/DataModel/FemtoWorldDerived.h:16:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/DataModel/FemtoWorldDerived.h:23:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/DataModel/FemtoWorldDerived.h:25:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/DataModel/FemtoWorldDerived.h:68:23: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/DataModel/FemtoWorldDerived.h:70:26: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/DataModel/FemtoWorldDerived.h:88:36: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/DataModel/FemtoWorldDerived.h:114:32: warning: no header providing "int8_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx` ```text PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:19:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:21:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:34:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:37:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:38:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:61:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:63:17: error: no member named 'FemtoWorldDebugParticles' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:65:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:77:60: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:81:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:94:103: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:96:48: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:100:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:102:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:107:97: warning: no header providing "o2::analysis::femtoWorld::femtoWorldSelection::kEqual" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:108:97: warning: no header providing "o2::analysis::femtoWorld::femtoWorldSelection::kLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:109:96: warning: no header providing "o2::analysis::femtoWorld::femtoWorldSelection::kAbsUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:115:104: warning: no header providing "o2::analysis::femtoWorld::femtoWorldSelection::kUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:132:29: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:132:56: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:132:83: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:137:31: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:176:9: error: no matching function for call to object of type 'Produces' (aka 'Produces, Hash<"FEMTOWORLDCOLS/0"_h>, Hash<"AOD"_h>>>') [clang-diagnostic-error] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:183:5: error: no matching function for call to object of type 'Produces' (aka 'Produces, Hash<"FEMTOWORLDCOLS/0"_h>, Hash<"AOD"_h>>>') [clang-diagnostic-error] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:196:7: error: no matching function for call to object of type 'Produces' (aka 'Produces, Hash<"FEMTOWORLDPARTS/0"_h>, Hash<"AOD"_h>>>') [clang-diagnostic-error] ``` #### `PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx` ```text PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:18:1: warning: included header FemtoWorldPairCleaner.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:28:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:44:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:46:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:90:8: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:99:8: warning: constructor does not initialize these fields: o2PhysicsTrackSelection, mRunNumber, mMagField, ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:101:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:108:3: warning: no header providing "TrackSelection" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:110:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:112:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:125:62: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:135:23: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:148:105: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:221:48: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:225:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:228:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:233:104: warning: no header providing "o2::analysis::femtoWorld::femtoWorldSelection::kEqual" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:234:104: warning: no header providing "o2::analysis::femtoWorld::femtoWorldSelection::kLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:235:103: warning: no header providing "o2::analysis::femtoWorld::femtoWorldSelection::kAbsUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:239:111: warning: no header providing "o2::analysis::femtoWorld::femtoWorldSelection::kUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:259:143: warning: no header providing "o2::analysis::femtoWorld::femtoWorldSelection::kAbsLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:277:54: warning: no header providing "getGlobalTrackSelection" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:301:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:301:32: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:301:59: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:301:86: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:317:20: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:352:34: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:431:20: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:461:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:828:46: warning: no header providing "o2::aod::track::TrackTypeEnum" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:989:60: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:1151:60: warning: no header providing "o2::aod::hf_cand_2prong::DecayType" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:1154:41: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:1172:21: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx` ```text PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:22:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:30:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:35:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:38:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:39:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:70:8: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:81:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:83:17: error: no member named 'FemtoWorldDebugParticles' in namespace 'o2::aod' [clang-diagnostic-error] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:85:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:98:60: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:107:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:122:111: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:137:48: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:141:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:143:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:151:92: warning: no header providing "o2::analysis::femtoWorld::femtoWorldSelection::kEqual" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:152:94: warning: no header providing "o2::analysis::femtoWorld::femtoWorldSelection::kLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:153:106: warning: no header providing "o2::analysis::femtoWorld::femtoWorldSelection::kUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:157:131: warning: no header providing "o2::analysis::femtoWorld::femtoWorldSelection::kAbsUpperLimit" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:159:136: warning: no header providing "o2::analysis::femtoWorld::femtoWorldSelection::kAbsLowerLimit" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:183:29: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:183:56: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:183:83: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:188:31: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:220:9: error: no matching function for call to object of type 'Produces' (aka 'Produces, Hash<"FEMTOWORLDCOLS/0"_h>, Hash<"AOD"_h>>>') [clang-diagnostic-error] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:232:7: error: no matching function for call to object of type 'Produces' (aka 'Produces, Hash<"FEMTOWORLDCOLS/0"_h>, Hash<"AOD"_h>>>') [clang-diagnostic-error] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:234:7: error: no matching function for call to object of type 'Produces' (aka 'Produces, Hash<"FEMTOWORLDCOLS/0"_h>, Hash<"AOD"_h>>>') [clang-diagnostic-error] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:261:11: error: no matching function for call to object of type 'Produces' (aka 'Produces, Hash<"FEMTOWORLDPARTS/0"_h>, Hash<"AOD"_h>>>') [clang-diagnostic-error] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:268:11: error: no matching function for call to object of type 'Produces' (aka 'Produces, Hash<"FEMTOWORLDPARTS/0"_h>, Hash<"AOD"_h>>>') [clang-diagnostic-error] PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:271:11: error: no matching function for call to object of type 'Produces' (aka 'Produces, Hash<"FEMTOWORLDPARTS/0"_h>, Hash<"AOD"_h>>>') [clang-diagnostic-error] ``` #### `PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx` ```text PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:20:1: warning: included header FemtoWorldDerived.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:21:1: warning: included header LFResonanceTables.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:23:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:30:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:35:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:37:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:52:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:54:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:57:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:57:58: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:68:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:81:60: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:86:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:96:78: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:98:112: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:99:82: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:99:134: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:100:98: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:215:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:222:20: warning: no header providing "TMath::Hypot" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:264:27: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:293:31: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTask.cxx:385:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx` ```text PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:20:1: warning: included header LFResonanceTables.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:22:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:34:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:36:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:49:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:51:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:54:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:54:58: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:65:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:78:60: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:83:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:91:78: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:93:112: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:94:82: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:94:134: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:95:98: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:191:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:198:20: warning: no header providing "TMath::Hypot" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:222:27: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:251:31: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldEfficiencyTaskDe.cxx:337:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx` ```text PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:22:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:23:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:31:1: warning: included header FemtoWorldUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:47:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:48:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:52:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:82:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:85:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:85:94: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:88:76: warning: no header providing "o2::aod::track::dcaXY" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:88:119: warning: no header providing "o2::aod::track::dcaZ" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:92:92: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:143:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:143:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:146:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:146:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:171:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:179:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:189:68: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:240:20: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:246:20: warning: no header providing "TMath::Hypot" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:346:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx` ```text PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:22:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:23:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:31:1: warning: included header FemtoWorldUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:46:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:47:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:49:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:78:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:81:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:81:94: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:84:76: warning: no header providing "o2::aod::track::dcaXY" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:84:119: warning: no header providing "o2::aod::track::dcaZ" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:88:92: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:139:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:139:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:142:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:142:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:159:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:163:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:173:68: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:200:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:206:18: warning: no header providing "TMath::Hypot" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:271:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx` ```text PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:21:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:22:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:30:1: warning: included header FemtoWorldUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:32:1: warning: included header CandidateReconstructionTables.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:33:1: warning: included header CandidateSelectionTables.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:45:19: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:45:31: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:56:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:57:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:59:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:67:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:85:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:85:88: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:87:70: warning: no header providing "o2::aod::track::dcaXY" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:87:113: warning: no header providing "o2::aod::track::dcaZ" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:91:86: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:98:16: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:115:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:115:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:132:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:136:96: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:142:121: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:168:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:174:18: warning: no header providing "TMath::Hypot" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:254:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:315:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:356:5: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:356:41: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx` ```text PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:21:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:22:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:30:1: warning: included header FemtoWorldUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:42:19: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:42:31: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:53:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:54:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:57:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:65:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:83:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:83:88: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:85:70: warning: no header providing "o2::aod::track::dcaXY" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:85:113: warning: no header providing "o2::aod::track::dcaZ" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:89:86: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:96:16: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:122:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:122:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:139:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:153:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:159:18: warning: no header providing "TMath::Hypot" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:239:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:307:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:314:5: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:314:41: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx` ```text PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:21:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:22:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:30:1: warning: included header FemtoWorldUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:46:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:47:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:56:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:80:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:83:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:83:94: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:86:76: warning: no header providing "o2::aod::track::dcaXY" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:86:119: warning: no header providing "o2::aod::track::dcaZ" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:90:92: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:142:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:142:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:145:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:145:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:162:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:167:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:177:68: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:203:22: warning: no header providing "TMath::Hypot" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:208:20: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:294:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx` ```text PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:22:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:23:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:32:1: warning: included header FemtoWorldUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:50:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:51:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:55:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:76:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:76:94: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:79:60: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:79:81: warning: no header providing "o2::aod::track::dcaXY" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:79:130: warning: no header providing "o2::aod::track::dcaZ" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:95:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:95:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:104:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:104:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:125:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:132:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:134:64: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:161:16: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:183:35: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:183:66: warning: no header providing "TMath::Sq" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionAllPairTask.cxx:252:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx` ```text PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:22:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:23:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:31:1: warning: included header FemtoWorldUtils.h is not used directly [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:47:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:48:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:57:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:81:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:84:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:84:94: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:87:76: warning: no header providing "o2::aod::track::dcaXY" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:87:119: warning: no header providing "o2::aod::track::dcaZ" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:91:92: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:143:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:143:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:146:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:146:39: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:163:47: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:168:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:178:68: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:214:16: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:240:35: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:240:66: warning: no header providing "TMath::Sq" is directly included [misc-include-cleaner] PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:319:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/Flow/TableProducer/zdcQVectors.cxx` ```text PWGCF/Flow/TableProducer/zdcQVectors.cxx:19:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:22:1: warning: included header typeinfo is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:23:1: warning: included header memory is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:28:1: warning: included header TriggerAliases.h is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:29:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:30:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:32:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:39:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:40:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:41:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:43:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:44:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:45:1: warning: included header GlobalTrackID.h is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:46:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:49:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:50:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:52:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:54:1: warning: included header TFitResult.h is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:55:1: warning: included header TCanvas.h is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:56:1: warning: included header TSystem.h is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:57:1: warning: included header TROOT.h is not used directly [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:75:13: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:101:1: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:107:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/TableProducer/zdcQVectors.cxx:109:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:111:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:112:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:118:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:132:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:197:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:206:5: warning: no header providing "TProfile3D" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:217:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:223:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:223:32: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:223:59: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:223:86: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:231:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:231:32: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:235:78: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:271:22: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:271:27: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:271:69: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:275:99: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:281:134: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:302:72: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:361:22: warning: no header providing "TProfile2D" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:361:115: warning: no header providing "o2::framework::kTProfile2D" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:370:64: warning: no header providing "o2::framework::kTProfile3D" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:448:3: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:451:10: warning: variable 'selected' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/TableProducer/zdcQVectors.cxx:538:27: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:636:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/TableProducer/zdcQVectors.cxx:638:21: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/TableProducer/zdcQVectors.cxx:639:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/TableProducer/zdcQVectors.cxx:641:21: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/TableProducer/zdcQVectors.cxx:645:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/TableProducer/zdcQVectors.cxx:658:23: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/TableProducer/zdcQVectors.cxx:664:21: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/TableProducer/zdcQVectors.cxx:688:7: warning: no header providing "THnSparseD" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:688:23: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/TableProducer/zdcQVectors.cxx:694:17: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:698:7: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:1052:41: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGCF/Flow/TableProducer/zdcQVectors.cxx:1118:29: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/TableProducer/zdcQVectors.cxx:1119:29: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `PWGCF/Flow/Tasks/flowAnalysisGF.cxx` ```text PWGCF/Flow/Tasks/flowAnalysisGF.cxx:13:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:15:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:16:1: warning: included header numeric is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:21:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:22:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:26:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:31:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:33:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:47:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:64:32: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:77:8: warning: constructor does not initialize these fields: ccdb, fPtAxis [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:114:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:117:5: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:123:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:148:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:182:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:183:53: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:210:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:210:32: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:210:59: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:210:86: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:222:46: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:281:5: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:309:42: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:319:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:334:31: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:335:24: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:343:24: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:401:31: warning: no header providing "kTVXinTRD" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:410:52: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:418:52: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:426:52: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:434:52: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:444:27: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:474:24: warning: no header providing "TMath::TwoPi" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:480:23: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:481:15: warning: no header providing "fmod" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:503:10: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:504:60: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:508:62: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:509:20: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:515:12: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:555:59: warning: no header providing "o2::aod::mcparticle::Vy" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:598:60: warning: no header providing "o2::aod::mctracklabel::McParticleId" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:611:65: warning: no header providing "o2::aod::mcparticle::McCollisionId" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:686:11: warning: variable 'centrality' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:710:45: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:721:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:721:28: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:721:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:722:41: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:722:70: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:722:184: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:724:25: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:724:39: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:724:49: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:724:62: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:726:49: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:730:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:732:261: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:732:297: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:738:48: warning: no header providing "o2::aod::mccollision::posZ" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:739:40: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:739:89: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowAnalysisGF.cxx:739:116: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] ``` #### `PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx` ```text PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:19:1: warning: included header cascqaanalysis.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:21:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:22:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:23:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:24:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:25:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:26:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:41:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:79:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:79:44: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:86:3: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:91:29: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:98:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:102:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:106:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:108:39: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:149:29: warning: no header providing "kTVXinTRD" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:153:50: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:158:50: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:163:50: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:168:50: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:173:50: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:177:50: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:195:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:237:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:245:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:256:40: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:345:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx:347:57: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] ``` #### `PWGCF/Flow/Tasks/flowEsePHe3.cxx` ```text PWGCF/Flow/Tasks/flowEsePHe3.cxx:16:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:18:1: warning: included header TComplex.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:20:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:21:1: warning: included header TH2D.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:22:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:23:1: warning: included header TVector2.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:25:1: warning: included header chrono is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:28:1: warning: included header utility is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:33:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:46:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:50:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:51:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:69:44: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:77:50: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:84:58: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:301:17: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:302:17: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:303:17: warning: no header providing "TProfile3D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:306:17: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:321:8: warning: constructor does not initialize these fields: poiTar, poiRef, detId, refAId, refBId, detInd, refAInd, refBInd [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/Tasks/flowEsePHe3.cxx:325:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:327:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:337:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:396:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:430:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:435:59: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:633:19: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:633:40: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:638:55: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:645:71: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:651:71: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:657:75: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:663:75: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:669:75: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:675:75: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:1075:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:1097:51: warning: both sides of operator are equivalent [misc-redundant-expression] PWGCF/Flow/Tasks/flowEsePHe3.cxx:1098:53: warning: both sides of operator are equivalent [misc-redundant-expression] PWGCF/Flow/Tasks/flowEsePHe3.cxx:1099:53: warning: both sides of operator are equivalent [misc-redundant-expression] PWGCF/Flow/Tasks/flowEsePHe3.cxx:1114:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:1116:56: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:1130:68: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEsePHe3.cxx:1189:58: warning: no header providing "Form" is directly included [misc-include-cleaner] ``` #### `PWGCF/Flow/Tasks/flowEseTask.cxx` ```text PWGCF/Flow/Tasks/flowEseTask.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:24:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:28:1: warning: included header PIDResponseITS.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:36:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:37:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:38:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:42:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:43:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:44:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:46:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:49:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:50:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:54:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:69:8: warning: constructor does not initialize these fields: ccdb, detId, refAId, refBId, qvecDetInd, qvecRefAInd, qvecRefBInd, centrality, angle, psi, relphi [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/Tasks/flowEseTask.cxx:78:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:80:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:81:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:83:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:85:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:148:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:149:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:191:15: warning: no header providing "TProfile3D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:192:3: warning: no header providing "TProfile2D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:219:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:221:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:223:53: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:224:59: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:232:16: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:232:41: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:385:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:388:68: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:396:51: warning: no header providing "o2::framework::kTProfile3D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:427:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:448:46: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:451:46: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:457:72: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:527:35: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEseTask.cxx:1063:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/Flow/Tasks/flowEventPlane.cxx` ```text PWGCF/Flow/Tasks/flowEventPlane.cxx:48:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:54:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:54:57: warning: no header providing "o2::soa::Index" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:114:8: warning: constructor does not initialize these fields: ccdbService, CorrectionHistContainer [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/Tasks/flowEventPlane.cxx:116:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:121:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:181:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:184:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:184:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:187:15: warning: member 'zdcDenThrs' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/Flow/Tasks/flowEventPlane.cxx:204:16: warning: no header providing "TH2F" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:205:38: warning: no header providing "THnSparseF" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:206:38: warning: no header providing "TProfile" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:212:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:219:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:241:33: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:245:40: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:251:57: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:253:47: warning: no header providing "o2::framework::kTProfile2D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:255:60: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:259:51: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:318:58: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:322:53: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:326:58: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:330:54: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:334:57: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:338:57: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:342:60: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:357:51: warning: no header providing "TList" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:358:47: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/Tasks/flowEventPlane.cxx:359:47: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/Tasks/flowEventPlane.cxx:445:72: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/Tasks/flowEventPlane.cxx:447:74: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/Tasks/flowEventPlane.cxx:468:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:666:24: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:666:34: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:666:58: warning: no header providing "o2::aod::Run3MatchedToBCSparse" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:667:41: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:668:33: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:668:67: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:670:94: warning: no header providing "o2::aod::Zdcs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:682:25: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:686:58: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:687:58: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:702:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:819:68: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:821:53: warning: no header providing "o2::framework::kTProfile3D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:876:29: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:1011:22: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:1047:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:1048:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowEventPlane.cxx:1064:75: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] ``` #### `PWGCF/Flow/Tasks/flowGfwEse.cxx` ```text PWGCF/Flow/Tasks/flowGfwEse.cxx:20:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:21:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:23:1: warning: included header GFWWeightsList.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:25:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:33:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:36:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:40:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:51:1: warning: included header numeric is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:59:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:73:36: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:89:8: warning: constructor does not initialize these fields: ccdb, fSecondAxis, hFindPtBin, funcV2, funcV3, funcV4 [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/Tasks/flowGfwEse.cxx:141:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:156:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:158:10: warning: constructor does not initialize these fields: mAcceptance [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/Tasks/flowGfwEse.cxx:159:5: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:165:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:172:34: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:174:45: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:245:21: warning: member 'shapesel' of type 'const std::string' (aka 'const basic_string') is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/Flow/Tasks/flowGfwEse.cxx:268:31: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:268:56: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:268:77: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:269:69: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:269:98: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:269:223: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:269:256: warning: no header providing "o2::aod::track::itsChi2NCl" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:269:302: warning: no header providing "o2::aod::track::tpcChi2NCl" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:271:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:271:17: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:271:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:272:76: warning: no header providing "o2::aod::mccollision::posZ" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:273:76: warning: no header providing "o2::aod::mcparticle::eta" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:273:193: warning: no header providing "o2::aod::mcparticle::pt" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:275:26: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:275:40: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:275:63: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:277:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:319:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:368:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:368:32: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:368:59: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:368:86: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:375:48: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:449:5: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:464:41: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:516:12: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:532:35: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:541:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:556:26: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:567:24: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:582:29: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:626:31: warning: no header providing "kTVXinTRD" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:636:52: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:646:52: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:656:52: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:666:52: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:676:52: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:794:62: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:797:62: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:798:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:881:22: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:920:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:949:60: warning: no header providing "o2::aod::mctracklabel::McParticleId" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:982:65: warning: no header providing "o2::aod::mcparticle::McCollisionId" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:1147:49: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwEse.cxx:1202:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx` ```text PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:18:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:19:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:27:1: warning: included header EventPlaneHelper.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:28:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:29:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:36:1: warning: included header Qvectors.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:40:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:43:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:45:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:48:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:50:1: warning: included header TF2.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:59:1: warning: included header unordered_map is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:72:17: warning: no header providing "TProfile3D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:91:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:93:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:100:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:198:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:199:72: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:201:44: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:214:3: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:216:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:216:28: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:216:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:217:42: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:217:97: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:217:269: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:217:301: warning: no header providing "o2::aod::track::tpcChi2NCl" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:219:26: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:220:26: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:220:50: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:220:118: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:220:147: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:221:54: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:225:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:227:42: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:227:64: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:227:91: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:227:118: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:232:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:248:45: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:274:15: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:308:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:354:31: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:378:47: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:397:12: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:398:22: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:619:100: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:639:94: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:697:59: warning: no header providing "ConstStr" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:699:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:699:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:715:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:715:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:921:64: warning: no header providing "kTVXinTRD" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:926:94: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:932:95: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:938:94: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:944:94: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:950:102: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:955:95: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:1011:67: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:1078:31: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:1122:60: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:1204:99: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:1568:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:1570:26: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:1570:72: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:1570:132: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:1570:159: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:1686:89: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] ``` #### `PWGCF/Flow/Tasks/flowGfwTask.cxx` ```text PWGCF/Flow/Tasks/flowGfwTask.cxx:19:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:20:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:30:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:34:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:35:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:37:1: warning: included header GlobalTrackID.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:38:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:42:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:59:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:67:8: warning: constructor does not initialize these fields: ccdb, fPtAxis [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/Tasks/flowGfwTask.cxx:114:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:115:66: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:116:71: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:118:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:142:3: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:148:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:149:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:149:73: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:149:100: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:149:127: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:153:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:270:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:277:70: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:309:77: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:343:13: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:433:41: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:478:56: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:527:5: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:537:80: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:582:59: warning: no header providing "ConstStr" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:584:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowGfwTask.cxx:584:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowGfwTask.cxx:585:40: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:599:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowGfwTask.cxx:599:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowGfwTask.cxx:615:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowGfwTask.cxx:615:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowGfwTask.cxx:636:24: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:700:52: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:708:52: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:716:52: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:724:52: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:732:52: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:739:52: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:746:83: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:844:66: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:844:90: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:846:97: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:1187:10: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowGfwTask.cxx:1192:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/Flow/Tasks/flowMc.cxx` ```text PWGCF/Flow/Tasks/flowMc.cxx:24:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:25:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:30:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:31:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:32:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:33:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:34:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:36:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:38:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:52:8: warning: constructor does not initialize these fields: hFindPtBin, funcV2, funcV3, funcV4, ccdb, fPtAxis [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/Tasks/flowMc.cxx:53:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:55:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:100:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:101:54: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:102:68: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:124:3: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:139:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:142:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:153:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:157:29: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:157:56: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:157:83: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:160:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:164:73: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:172:16: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:176:16: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:228:7: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:229:20: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:231:29: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:250:91: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:251:108: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:299:12: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:312:24: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:352:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowMc.cxx:352:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowMc.cxx:358:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:407:81: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:412:82: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:417:84: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:422:85: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:425:84: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:428:92: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:432:86: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:436:90: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:452:177: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:460:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:504:28: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:526:29: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:527:29: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:538:24: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:622:35: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowMc.cxx:703:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/Flow/Tasks/flowPbpbPikp.cxx` ```text PWGCF/Flow/Tasks/flowPbpbPikp.cxx:19:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:20:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:22:1: warning: included header GFWWeightsList.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:24:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:25:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:34:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:35:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:39:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:40:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:43:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:46:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:73:8: warning: constructor does not initialize these fields: ccdb, fPtAxis, hFindPtBin, funcV2, funcV3, funcV4 [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:75:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:76:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:76:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:76:65: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:76:92: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:76:119: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:123:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:124:66: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:126:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:142:290: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:147:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:148:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:155:34: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:155:45: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:203:3: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:217:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:238:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:240:30: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:351:5: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:390:12: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:391:34: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:420:24: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:469:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:555:10: warning: variable 'isPion' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:555:18: warning: variable 'isKaon' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:555:26: warning: variable 'isProton' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:594:59: warning: no header providing "ConstStr" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:596:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:596:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:598:42: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:601:42: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:619:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:619:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:660:7: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:748:9: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:783:82: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:789:83: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:795:82: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:801:84: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:807:94: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:813:85: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:819:88: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:825:92: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:859:81: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:864:56: warning: no header providing "kTVXinTRD" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:890:16: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPbpbPikp.cxx:904:9: warning: variable 'pidIndex' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGCF/Flow/Tasks/flowPidCme.cxx` ```text PWGCF/Flow/Tasks/flowPidCme.cxx:18:1: warning: included header TComplex.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:20:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:21:1: warning: included header TH2D.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:22:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:23:1: warning: included header TVector2.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:33:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:43:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:45:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:49:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:50:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:63:40: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:114:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:133:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:214:39: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:218:34: warning: no header providing "std::cosh" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:241:42: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:284:5: warning: uninitialized record type: 'nSigmaToUse' [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/Tasks/flowPidCme.cxx:496:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/Flow/Tasks/flowPidCme.cxx:524:49: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:526:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:529:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:540:56: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:551:22: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:551:63: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:886:22: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:915:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:919:34: warning: no header providing "o2::soa::Attach" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:923:12: warning: variable 'pidFlag' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowPidCme.cxx:1232:13: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/Flow/Tasks/flowPidCme.cxx:1250:17: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/Flow/Tasks/flowPidCme.cxx:1266:17: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/Flow/Tasks/flowPidCme.cxx:1282:17: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/Flow/Tasks/flowPidCme.cxx:1298:17: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/Flow/Tasks/flowPidCme.cxx:1981:8: warning: constructor does not initialize these fields: ccdb, mult1, mult2, mult3, detId, refAId, refBId [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/Tasks/flowPidCme.cxx:2059:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:2062:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:2112:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:2266:22: warning: no header providing "TProfile" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:2531:133: warning: no header providing "std::round" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:2532:48: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:2556:80: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:2562:80: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:2568:92: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:2574:85: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:2580:86: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:2586:90: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPidCme.cxx:3397:30: warning: no header providing "std::sin" is directly included [misc-include-cleaner] ``` #### `PWGCF/Flow/Tasks/flowPtEfficiency.cxx` ```text PWGCF/Flow/Tasks/flowPtEfficiency.cxx:19:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:20:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:32:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:48:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:50:8: warning: constructor does not initialize these fields: ccdb, fPtAxis [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:82:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:82:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:84:68: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:89:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:89:25: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:89:42: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:89:76: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:89:144: warning: no header providing "o2::aod::track::tpcChi2NCl" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:90:25: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:90:39: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:90:49: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:90:62: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:90:117: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:93:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:94:53: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:94:83: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:97:50: warning: no header providing "o2::aod::mcparticle::eta" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:97:89: warning: no header providing "o2::aod::mcparticle::pt" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:98:44: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:101:53: warning: no header providing "o2::aod::mccollision::posZ" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:102:45: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:104:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:104:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:110:3: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:121:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:122:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:122:73: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:122:100: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:122:127: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:127:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:140:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:153:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:155:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:159:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:160:51: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:187:7: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:188:20: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:190:29: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:209:91: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:210:108: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:257:70: warning: no header providing "ConstStr" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:259:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:259:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:265:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:274:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:274:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:303:26: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:387:66: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:397:17: warning: no header providing "std::count" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:457:12: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:462:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowPtEfficiency.cxx:464:100: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] ``` #### `PWGCF/Flow/Tasks/flowQa.cxx` ```text PWGCF/Flow/Tasks/flowQa.cxx:25:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:26:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:30:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:31:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:37:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:39:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:42:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:52:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:54:8: warning: constructor does not initialize these fields: ccdb, fPtAxis, gCurrentHadronicRate, hFindPtBin, funcV2, funcV3, funcV4 [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/Tasks/flowQa.cxx:106:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:107:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:113:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:113:29: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:113:50: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:114:42: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:114:76: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:117:3: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:123:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:124:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:124:73: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:124:100: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:124:127: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:128:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:158:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:160:27: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:170:30: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:170:44: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:170:54: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:171:50: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:171:84: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:173:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:175:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:176:54: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:188:61: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:267:18: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:274:27: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:298:12: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:335:80: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:344:97: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:391:59: warning: no header providing "ConstStr" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:393:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowQa.cxx:393:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowQa.cxx:408:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowQa.cxx:408:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowQa.cxx:485:80: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:492:80: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:499:88: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:505:81: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:512:82: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:518:86: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:560:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/Flow/Tasks/flowQa.cxx:598:30: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:610:133: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowQa.cxx:643:11: warning: variable 'cent' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGCF/Flow/Tasks/flowRunbyRun.cxx` ```text PWGCF/Flow/Tasks/flowRunbyRun.cxx:28:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:29:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:33:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:39:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:41:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:44:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:53:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:55:8: warning: constructor does not initialize these fields: ccdb, fPtAxis, gCurrentHadronicRate [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/Tasks/flowRunbyRun.cxx:100:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:101:66: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:103:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:110:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:110:28: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:110:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:111:93: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:111:130: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:111:164: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:111:232: warning: no header providing "o2::aod::track::tpcChi2NCl" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:114:3: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:116:3: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:120:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:124:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:136:45: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:137:45: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:171:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:186:30: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:186:44: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:186:54: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:187:50: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:187:84: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:189:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:193:29: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:193:56: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:193:83: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:202:20: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:212:12: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:213:22: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:225:77: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:265:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowRunbyRun.cxx:265:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowRunbyRun.cxx:266:40: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:280:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowRunbyRun.cxx:280:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowRunbyRun.cxx:296:26: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:356:71: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:399:30: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:412:133: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:421:80: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:428:80: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:435:88: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:441:81: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:448:82: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:454:86: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowRunbyRun.cxx:511:39: warning: no header providing "std::find" is directly included [misc-include-cleaner] ``` #### `PWGCF/Flow/Tasks/flowSP.cxx` ```text PWGCF/Flow/Tasks/flowSP.cxx:21:1: warning: included header EventPlaneHelper.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:29:1: warning: included header Qvectors.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:35:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:36:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:40:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:46:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:48:1: warning: included header numeric is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:60:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:62:8: warning: constructor does not initialize these fields: ccdb, pdg [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/Tasks/flowSP.cxx:63:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:65:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:145:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:152:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:152:28: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:152:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:153:41: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:153:79: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:153:211: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:154:48: warning: no header providing "o2::aod::mcparticle::eta" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:154:91: warning: no header providing "o2::aod::mcparticle::pt" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:155:34: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:155:44: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:156:43: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:156:56: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:158:27: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:162:63: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:164:48: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:167:34: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:169:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:169:68: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:170:3: warning: no header providing "o2::framework::PresliceUnsorted" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:170:68: warning: no header providing "o2::aod::mccollisionlabel::mcCollisionId" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:171:65: warning: no header providing "o2::aod::mctracklabel::mcParticleId" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:172:49: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:175:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:180:17: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:181:17: warning: no header providing "TH2D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:183:17: warning: no header providing "TH3D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:187:5: warning: no header providing "TProfile" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:192:5: warning: no header providing "TProfile2D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:233:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:238:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:308:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:312:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:319:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:319:32: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:319:59: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:319:86: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:322:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:324:53: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:325:49: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:350:64: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:381:20: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:381:54: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:439:20: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:439:56: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:516:60: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:525:24: warning: no header providing "TProfile3D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:525:52: warning: no header providing "o2::framework::kTProfile3D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:529:66: warning: no header providing "o2::framework::kTProfile2D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:572:56: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:618:7: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:679:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:709:20: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:734:35: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/Tasks/flowSP.cxx:735:35: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/Tasks/flowSP.cxx:736:35: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/Tasks/flowSP.cxx:761:33: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/Tasks/flowSP.cxx:762:33: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/Tasks/flowSP.cxx:763:33: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/Tasks/flowSP.cxx:775:35: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/Tasks/flowSP.cxx:776:35: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/Tasks/flowSP.cxx:777:35: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/Tasks/flowSP.cxx:796:13: warning: variable 'binx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowSP.cxx:797:13: warning: variable 'biny' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowSP.cxx:855:52: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:863:52: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:871:52: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:878:52: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeNarrow" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:885:52: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:893:52: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:901:52: warning: no header providing "o2::aod::evsel::kIsGoodITSLayer0123" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:979:15: warning: no header providing "fmod" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:1171:7: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/Flow/Tasks/flowSP.cxx:1186:67: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:1257:68: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:1258:68: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:1276:23: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/Tasks/flowSP.cxx:1277:24: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/Tasks/flowSP.cxx:1278:24: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/Tasks/flowSP.cxx:1406:21: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:1407:21: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:1422:9: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/Flow/Tasks/flowSP.cxx:1447:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/Flow/Tasks/flowSP.cxx:1527:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:1582:36: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:1590:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/Flow/Tasks/flowSP.cxx:1612:9: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/Flow/Tasks/flowSP.cxx:1631:26: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowSP.cxx:1698:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `PWGCF/Flow/Tasks/flowTask.cxx` ```text PWGCF/Flow/Tasks/flowTask.cxx:21:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:22:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:26:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:27:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:33:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:36:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:41:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:60:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:63:8: warning: constructor does not initialize these fields: ccdb, fPtAxis, gCurrentHadronicRate, hFindPtBin, funcV2, funcV3, funcV4 [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/Tasks/flowTask.cxx:78:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:121:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:157:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:157:73: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:166:5: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:180:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:186:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:186:29: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:186:50: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:187:93: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:187:130: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:187:164: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:187:232: warning: no header providing "o2::aod::track::tpcChi2NCl" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:188:35: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:188:49: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:188:59: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:189:55: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:189:89: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:191:53: warning: no header providing "o2::aod::mccollision::posZ" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:192:51: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:194:50: warning: no header providing "o2::aod::mcparticle::eta" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:194:89: warning: no header providing "o2::aod::mcparticle::pt" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:195:50: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:197:47: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:197:74: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:205:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:209:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:227:33: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:254:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:256:27: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:267:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:269:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:270:54: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:278:29: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:278:56: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:278:83: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:283:61: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:356:70: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:387:18: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:442:12: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:505:80: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:526:97: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:575:42: warning: The left operand of '<' is a garbage value due to array index out of bounds [clang-analyzer-core.UndefinedBinaryOperatorResult] PWGCF/Flow/Tasks/flowTask.cxx:575:80: warning: The left operand of '<' is a garbage value due to array index out of bounds [clang-analyzer-core.UndefinedBinaryOperatorResult] PWGCF/Flow/Tasks/flowTask.cxx:666:59: warning: no header providing "ConstStr" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:668:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowTask.cxx:668:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowTask.cxx:685:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowTask.cxx:685:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowTask.cxx:703:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowTask.cxx:703:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowTask.cxx:732:10: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:835:80: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:842:81: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:847:80: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:852:80: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:859:88: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:865:81: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:872:82: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:878:86: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:975:30: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:987:133: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:995:11: warning: variable 'cent' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/flowTask.cxx:1044:16: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowTask.cxx:1266:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/Flow/Tasks/flowZdcTask.cxx` ```text PWGCF/Flow/Tasks/flowZdcTask.cxx:24:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:27:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:31:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:32:1: warning: included header TComplex.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:34:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:35:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:36:1: warning: included header TProfile2D.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:37:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:50:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:52:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/Tasks/flowZdcTask.cxx:53:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:105:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:108:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:117:26: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:117:36: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:118:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:118:28: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:118:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:119:38: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:121:30: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:122:26: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:122:50: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:122:84: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:123:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:123:55: warning: no header providing "o2::aod::track::tpcNClsFindable" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:123:74: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:124:34: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:124:44: warning: no header providing "o2::aod::Timestamps" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:124:74: warning: no header providing "o2::aod::Run3MatchedToBCSparse" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:125:67: warning: no header providing "o2::aod::TracksCovIU" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:136:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:136:73: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:136:100: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:136:127: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:159:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:160:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:162:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:165:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:171:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:174:16: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:180:33: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:184:62: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:413:85: warning: no header providing "o2::aod::Zdcs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:413:116: warning: no header providing "o2::aod::FV0As" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:413:145: warning: no header providing "o2::aod::FT0s" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:604:45: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:647:83: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/flowZdcTask.cxx:789:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/Flow/Tasks/pidFlowPtCorr.cxx` ```text PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:19:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:20:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:23:1: warning: included header Index.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:26:1: warning: included header EventPlaneHelper.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:27:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:28:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:35:1: warning: included header Qvectors.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:38:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:39:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:42:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:44:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:47:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:49:1: warning: included header TF2.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:58:1: warning: included header unordered_map is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:59:1: warning: included header utility is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:66:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:68:8: warning: constructor does not initialize these fields: ccdb, hFindPtBin, funcV2, funcV3, funcV4 [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:74:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:166:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:167:72: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:169:44: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:180:3: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:184:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:184:28: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:184:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:185:42: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:185:153: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:187:26: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:189:26: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:189:50: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:189:118: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:189:147: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:191:54: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:194:53: warning: no header providing "o2::aod::mccollision::posZ" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:195:51: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:197:50: warning: no header providing "o2::aod::mcparticle::eta" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:198:50: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:200:134: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:201:98: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:204:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:204:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:207:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:209:42: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:209:64: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:209:91: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:209:118: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:214:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:235:45: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:265:15: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:266:15: warning: no header providing "TH2D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:289:21: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:290:21: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:310:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:333:54: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:339:31: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:404:12: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:450:5: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:451:21: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:475:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:537:93: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:600:10: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:632:71: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:778:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:778:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:781:40: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:823:59: warning: no header providing "ConstStr" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:825:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:825:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:845:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:845:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:891:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:891:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:904:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:904:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:1154:64: warning: no header providing "kTVXinTRD" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:1159:94: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:1165:95: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:1171:94: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:1177:94: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:1183:102: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:1188:95: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:1240:67: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:1522:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:1728:24: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] ``` #### `PWGCF/Flow/Tasks/resonancesGfwFlow.cxx` ```text PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:16:1: warning: included header FlowContainer.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:19:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:20:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:22:1: warning: included header GFWWeightsList.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:23:1: warning: included header EPCalibrationTables.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:27:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:28:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:42:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:43:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:46:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:49:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:58:1: warning: included header utility is not used directly [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:69:29: warning: no header providing "TProfile3D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:88:20: warning: no header providing "o2::framework::Array2D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:114:8: warning: constructor does not initialize these fields: ccdb, resoCutVals, resoSwitchVals, tofNsigmaCut, itsNsigmaCut, tpcNsigmaCut, fPtAxis, fPhiMassAxis, fK0MassAxis, fLambdaMassAxis, hFindPtBin, funcV2, funcV3, funcV4 [cppcoreguidelines-pro-type-member-init] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:116:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:117:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:216:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:224:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:225:66: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:227:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:234:290: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:241:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:244:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:266:3: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:280:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:282:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:282:40: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:282:67: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:282:94: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:307:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:312:30: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:324:48: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:460:18: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:491:9: warning: variable 'nPtMassBins' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:542:12: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:570:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:570:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:572:42: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:575:42: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:585:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:585:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:603:12: warning: variable 'pt1' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:603:17: warning: variable 'pt2' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:603:22: warning: variable 'pz1' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:603:27: warning: variable 'pz2' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:603:32: warning: variable 'p1' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:603:36: warning: variable 'p2' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:603:40: warning: variable 'angle' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:707:10: warning: variable 'isPion' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:707:18: warning: variable 'isKaon' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:707:26: warning: variable 'isProton' is not initialized [cppcoreguidelines-init-variables] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:750:7: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:864:7: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:915:156: warning: no header providing "ConstStr" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:937:30: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:1189:82: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:1195:83: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:1201:82: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:1207:84: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:1213:94: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:1219:85: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:1225:88: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:1231:92: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:1265:81: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:1270:56: warning: no header providing "kTVXinTRD" is directly included [misc-include-cleaner] ``` #### `PWGCF/GenericFramework/Core/BootstrapProfile.cxx` ```text PWGCF/GenericFramework/Core/BootstrapProfile.cxx:13:40: warning: no header providing "TProfile" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:15:57: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:24:73: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:24:93: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:26:129: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:41:5: warning: no header providing "printf" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:46:24: warning: no header providing "TList" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:48:23: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:50:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:50:68: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:51:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:63:3: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:75:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:77:1: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:82:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:89:30: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:100:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:107:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:114:1: warning: no header providing "Long64_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:114:34: warning: no header providing "TCollection" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:118:3: warning: no header providing "TIter" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:119:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:120:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:120:44: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:125:24: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:127:9: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:130:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:130:63: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:154:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:155:22: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:156:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:191:38: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:202:22: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:204:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:207:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:207:61: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:215:21: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:217:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:225:3: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.cxx:226:3: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `PWGCF/GenericFramework/Core/BootstrapProfile.h` ```text PWGCF/GenericFramework/Core/BootstrapProfile.h:21:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/BootstrapProfile.h:23:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/BootstrapProfile.h:29:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGCF/GenericFramework/Core/BootstrapProfile.h:30:57: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/BootstrapProfile.h:30:77: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/BootstrapProfile.h:37:3: warning: no header providing "Long64_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/BootstrapProfile.h:37:12: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGCF/GenericFramework/Core/BootstrapProfile.h:40:3: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/BootstrapProfile.h:48:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.h:50:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/BootstrapProfile.h:52:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/BootstrapProfile.h:57:3: warning: no header providing "Bool_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/GenericFramework/Core/FlowContainer.cxx` ```text PWGCF/GenericFramework/Core/FlowContainer.cxx:17:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:19:34: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:31:51: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:50:32: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:50:75: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:68:15: warning: no header providing "TProfile2D" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:68:26: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:75:25: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:190:1: warning: no header providing "Long64_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:190:31: warning: no header providing "TCollection" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:194:3: warning: no header providing "TIter" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:231:10: warning: Null pointer passed to 1st parameter expecting 'nonnull' [clang-analyzer-core.NonNullParamChecker] PWGCF/GenericFramework/Core/FlowContainer.cxx:235:5: warning: Value of 'errno' was not checked and may be overwritten by function 'printf' [clang-analyzer-unix.Errno] PWGCF/GenericFramework/Core/FlowContainer.cxx:235:5: warning: Opened stream never closed. Potential resource leak [clang-analyzer-unix.Stream] PWGCF/GenericFramework/Core/FlowContainer.cxx:239:19: warning: Value of 'errno' was not checked and may be overwritten by function 'fscanf' [clang-analyzer-unix.Errno] PWGCF/GenericFramework/Core/FlowContainer.cxx:239:19: warning: File position of the stream might be 'indeterminate' after a failed operation. Can cause undefined behavior [clang-analyzer-unix.Stream] PWGCF/GenericFramework/Core/FlowContainer.cxx:239:19: warning: Read function called when stream is in EOF state. Function has no effect [clang-analyzer-unix.Stream] PWGCF/GenericFramework/Core/FlowContainer.cxx:241:5: warning: no header providing "TFile" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:285:3: warning: no header providing "ProfileSubset" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:333:3: warning: no header providing "TRandom" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:335:23: warning: no header providing "TMath::FloorNint" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:367:1: warning: no header providing "TProfile" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:371:3: warning: no header providing "Ssiz_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:390:23: warning: Called C++ object pointer is null [clang-analyzer-core.CallAndMessage] PWGCF/GenericFramework/Core/FlowContainer.cxx:398:1: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:494:9: warning: variable 'corrN2' is not initialized [cppcoreguidelines-init-variables] PWGCF/GenericFramework/Core/FlowContainer.cxx:503:3: warning: Potential leak of memory pointed to by 'nam' [clang-analyzer-cplusplus.NewDeleteLeaks] PWGCF/GenericFramework/Core/FlowContainer.cxx:669:9: warning: variable 'corrN2' is not initialized [cppcoreguidelines-init-variables] PWGCF/GenericFramework/Core/FlowContainer.cxx:669:18: warning: variable 'corrN4' is not initialized [cppcoreguidelines-init-variables] PWGCF/GenericFramework/Core/FlowContainer.cxx:685:3: warning: Potential leak of memory pointed to by 'nam' [clang-analyzer-cplusplus.NewDeleteLeaks] PWGCF/GenericFramework/Core/FlowContainer.cxx:758:3: warning: Potential leak of memory pointed to by 'nam' [clang-analyzer-cplusplus.NewDeleteLeaks] PWGCF/GenericFramework/Core/FlowContainer.cxx:772:9: warning: variable 'corrN2' is not initialized [cppcoreguidelines-init-variables] PWGCF/GenericFramework/Core/FlowContainer.cxx:772:18: warning: variable 'corrN4' is not initialized [cppcoreguidelines-init-variables] PWGCF/GenericFramework/Core/FlowContainer.cxx:772:27: warning: variable 'corrN6' is not initialized [cppcoreguidelines-init-variables] PWGCF/GenericFramework/Core/FlowContainer.cxx:790:3: warning: Potential leak of memory pointed to by 'nam' [clang-analyzer-cplusplus.NewDeleteLeaks] PWGCF/GenericFramework/Core/FlowContainer.cxx:808:3: warning: Potential leak of memory pointed to by 'nam' [clang-analyzer-cplusplus.NewDeleteLeaks] PWGCF/GenericFramework/Core/FlowContainer.cxx:822:9: warning: variable 'corrN2' is not initialized [cppcoreguidelines-init-variables] PWGCF/GenericFramework/Core/FlowContainer.cxx:822:18: warning: variable 'corrN4' is not initialized [cppcoreguidelines-init-variables] PWGCF/GenericFramework/Core/FlowContainer.cxx:822:27: warning: variable 'corrN6' is not initialized [cppcoreguidelines-init-variables] PWGCF/GenericFramework/Core/FlowContainer.cxx:822:36: warning: variable 'corrN8' is not initialized [cppcoreguidelines-init-variables] PWGCF/GenericFramework/Core/FlowContainer.cxx:844:3: warning: Potential leak of memory pointed to by 'nam' [clang-analyzer-cplusplus.NewDeleteLeaks] PWGCF/GenericFramework/Core/FlowContainer.cxx:862:3: warning: Potential leak of memory pointed to by 'nam' [clang-analyzer-cplusplus.NewDeleteLeaks] PWGCF/GenericFramework/Core/FlowContainer.cxx:921:10: warning: Potential leak of memory pointed to by 'l_bins' [clang-analyzer-cplusplus.NewDeleteLeaks] PWGCF/GenericFramework/Core/FlowContainer.cxx:923:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:948:17: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:977:28: warning: no header providing "TMath::Power" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:999:17: warning: no header providing "TMath::Power" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.cxx:1227:10: warning: Potential leak of memory pointed to by 'retBins' [clang-analyzer-cplusplus.NewDeleteLeaks] ``` #### `PWGCF/GenericFramework/Core/FlowContainer.h` ```text PWGCF/GenericFramework/Core/FlowContainer.h:18:1: warning: included header vector is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.h:19:1: warning: included header TH3F.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.h:24:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.h:29:1: warning: included header TRandom.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.h:33:1: warning: included header ProfileSubset.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.h:41:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGCF/GenericFramework/Core/FlowContainer.h:67:3: warning: no header providing "Long64_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.h:79:71: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.h:80:87: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowContainer.h:170:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGCF/GenericFramework/Core/FlowPtContainer.cxx` ```text PWGCF/GenericFramework/Core/FlowPtContainer.cxx:58:54: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:112:55: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:112:90: warning: no header providing "o2::analysis::genericframework::GFWCorrConfigs" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:123:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:128:21: warning: no header providing "TList" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:129:25: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:139:24: warning: no header providing "BootstrapProfile" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:139:41: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:607:8: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:608:21: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:708:135: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:1017:14: warning: no header providing "std::holds_alternative" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:1017:37: warning: no header providing "std::complex" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:1018:24: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:1018:84: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:1019:21: warning: no header providing "std::holds_alternative" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:1697:1: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:1718:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:1719:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:1723:23: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:1732:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:1750:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:1760:24: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:1764:21: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:1773:51: warning: no header providing "assert" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:1790:1: warning: no header providing "Long64_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:1790:33: warning: no header providing "TCollection" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:1795:3: warning: no header providing "TIter" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:1865:3: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:1868:44: warning: no header providing "std::floor" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.cxx:1869:35: warning: no header providing "std::pow" is directly included [misc-include-cleaner] ``` #### `PWGCF/GenericFramework/Core/FlowPtContainer.h` ```text PWGCF/GenericFramework/Core/FlowPtContainer.h:19:1: warning: included header BootstrapProfile.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.h:20:1: warning: included header GFW.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.h:29:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.h:42:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/GenericFramework/Core/FlowPtContainer.h:43:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/GenericFramework/Core/FlowPtContainer.h:51:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGCF/GenericFramework/Core/FlowPtContainer.h:72:117: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.h:127:3: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.h:131:3: warning: no header providing "Long64_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/FlowPtContainer.h:229:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGCF/GenericFramework/Core/GFW.cxx` ```text PWGCF/GenericFramework/Core/GFW.cxx:19:12: warning: no header providing "std::complex" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFW.cxx:266:7: warning: variable 'ptInd' is not initialized [cppcoreguidelines-init-variables] PWGCF/GenericFramework/Core/GFW.cxx:332:30: warning: no header providing "GFWPowerArray" is directly included [misc-include-cleaner] ``` #### `PWGCF/GenericFramework/Core/GFW.h` ```text PWGCF/GenericFramework/Core/GFW.h:20:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/GFW.h:22:1: warning: included header algorithm is not used directly [misc-include-cleaner] ``` #### `PWGCF/GenericFramework/Core/GFWConfig.h` ```text PWGCF/GenericFramework/Core/GFWConfig.h:19:1: warning: included header GFW.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWConfig.h:23:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWConfig.h:24:1: warning: included header TObject.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWConfig.h:46:3: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWConfig.h:139:3: warning: no header providing "ClassDefNV" is directly included [misc-include-cleaner] ``` #### `PWGCF/GenericFramework/Core/GFWCumulant.cxx` ```text PWGCF/GenericFramework/Core/GFWCumulant.cxx:16:12: warning: no header providing "std::complex" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWCumulant.cxx:39:19: warning: no header providing "sin" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWCumulant.cxx:40:19: warning: no header providing "cos" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWCumulant.cxx:47:22: warning: no header providing "pow" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWCumulant.cxx:125:10: warning: no header providing "std::conj" is directly included [misc-include-cleaner] ``` #### `PWGCF/GenericFramework/Core/GFWCumulant.h` ```text PWGCF/GenericFramework/Core/GFWCumulant.h:33:16: warning: no header providing "uint" is directly included [misc-include-cleaner] ``` #### `PWGCF/GenericFramework/Core/GFWPowerArray.cxx` ```text PWGCF/GenericFramework/Core/GFWPowerArray.cxx:14:12: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWPowerArray.cxx:15:12: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWPowerArray.cxx:25:17: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWPowerArray.cxx:55:8: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWPowerArray.cxx:63:5: warning: no header providing "printf" is directly included [misc-include-cleaner] ``` #### `PWGCF/GenericFramework/Core/GFWPowerArray.h` ```text PWGCF/GenericFramework/Core/GFWPowerArray.h:21:1: warning: included header string is not used directly [misc-include-cleaner] ``` #### `PWGCF/GenericFramework/Core/GFWWeights.cxx` ```text PWGCF/GenericFramework/Core/GFWWeights.cxx:16:28: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.cxx:17:40: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.cxx:67:19: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.cxx:69:23: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.cxx:70:40: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.cxx:71:22: warning: no header providing "TH3D" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.cxx:85:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:86:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:109:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:113:11: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:135:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:150:14: warning: Called C++ object pointer is null [clang-analyzer-core.CallAndMessage] PWGCF/GenericFramework/Core/GFWWeights.cxx:162:14: warning: Called C++ object pointer is null [clang-analyzer-core.CallAndMessage] PWGCF/GenericFramework/Core/GFWWeights.cxx:187:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.cxx:191:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:192:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:204:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:205:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:206:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:215:3: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.cxx:215:9: warning: variable 'h1' is not initialized [cppcoreguidelines-init-variables] PWGCF/GenericFramework/Core/GFWWeights.cxx:221:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:231:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:247:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:248:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:273:11: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:274:11: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:281:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:286:31: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.cxx:295:5: warning: Opened stream never closed. Potential resource leak [clang-analyzer-unix.Stream] PWGCF/GenericFramework/Core/GFWWeights.cxx:313:3: warning: no header providing "TFile" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.cxx:315:19: warning: Value of 'errno' was not checked and may be overwritten by function 'fscanf' [clang-analyzer-unix.Errno] PWGCF/GenericFramework/Core/GFWWeights.cxx:323:5: warning: no header providing "TList" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.cxx:323:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:324:22: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:347:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:348:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:350:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:363:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:365:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:368:1: warning: no header providing "Long64_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.cxx:368:28: warning: no header providing "TCollection" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.cxx:387:3: warning: no header providing "TIter" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.cxx:388:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:414:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:416:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:417:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:419:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:420:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:423:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:451:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:453:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:454:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:456:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:465:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:466:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:495:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeights.cxx:497:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `PWGCF/GenericFramework/Core/GFWWeights.h` ```text PWGCF/GenericFramework/Core/GFWWeights.h:19:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.h:23:1: warning: included header TH3D.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.h:24:1: warning: included header TH2D.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.h:25:1: warning: included header TH1D.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.h:26:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.h:35:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGCF/GenericFramework/Core/GFWWeights.h:36:28: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.h:43:18: warning: no header providing "TH3D" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.h:50:3: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.h:57:3: warning: no header providing "Long64_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeights.h:84:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGCF/GenericFramework/Core/GFWWeightsList.cxx` ```text PWGCF/GenericFramework/Core/GFWWeightsList.cxx:20:36: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeightsList.cxx:41:14: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeightsList.cxx:43:18: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeightsList.cxx:51:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeightsList.cxx:51:24: warning: no header providing "GFWWeights" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeightsList.cxx:63:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeightsList.cxx:66:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeightsList.cxx:77:39: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeightsList.cxx:103:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeightsList.cxx:104:18: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeightsList.cxx:108:9: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeightsList.cxx:108:74: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeightsList.cxx:122:19: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeightsList.cxx:128:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeightsList.cxx:170:1: warning: no header providing "Long64_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeightsList.cxx:170:32: warning: no header providing "TCollection" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeightsList.cxx:178:3: warning: no header providing "TIter" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeightsList.cxx:180:22: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeightsList.cxx:192:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeightsList.cxx:193:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/GenericFramework/Core/GFWWeightsList.cxx:195:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `PWGCF/GenericFramework/Core/GFWWeightsList.h` ```text PWGCF/GenericFramework/Core/GFWWeightsList.h:24:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeightsList.h:29:31: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeightsList.h:34:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGCF/GenericFramework/Core/GFWWeightsList.h:36:96: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeightsList.h:51:3: warning: no header providing "Long64_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeightsList.h:51:18: warning: no header providing "TCollection" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/GFWWeightsList.h:60:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGCF/GenericFramework/Core/ProfileSubset.cxx` ```text PWGCF/GenericFramework/Core/ProfileSubset.cxx:15:1: warning: no header providing "TProfile" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/ProfileSubset.cxx:17:3: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/ProfileSubset.cxx:21:9: warning: no header providing "TAxis" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/ProfileSubset.cxx:22:9: warning: no header providing "TArrayD" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/ProfileSubset.cxx:32:3: warning: no header providing "TH2D" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/ProfileSubset.cxx:43:3: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/ProfileSubset.cxx:47:3: warning: no header providing "R__ASSERT" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/ProfileSubset.cxx:96:22: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/ProfileSubset.cxx:98:19: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Core/ProfileSubset.cxx:99:5: warning: no header providing "printf" is directly included [misc-include-cleaner] ``` #### `PWGCF/GenericFramework/Core/ProfileSubset.h` ```text PWGCF/GenericFramework/Core/ProfileSubset.h:21:1: warning: included header TError.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Core/ProfileSubset.h:27:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGCF/GenericFramework/Core/ProfileSubset.h:33:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx` ```text PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:20:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:21:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:23:1: warning: included header GFWWeightsList.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:25:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:33:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:36:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:40:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:50:1: warning: included header numeric is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:58:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:72:36: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:84:8: warning: constructor does not initialize these fields: ccdb, fPtAxis, hFindPtBin, funcV2, funcV3, funcV4 [cppcoreguidelines-pro-type-member-init] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:137:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:140:5: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:146:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:152:34: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:153:45: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:216:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:250:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:294:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:294:32: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:294:59: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:294:86: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:301:48: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:367:5: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:401:12: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:402:34: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:414:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:428:24: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:436:24: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:453:29: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:506:10: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:519:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:531:31: warning: no header providing "kTVXinTRD" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:542:52: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:552:52: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:562:52: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:572:52: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:582:52: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:651:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:726:62: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:729:62: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:730:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:791:22: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:816:60: warning: no header providing "o2::aod::mctracklabel::McParticleId" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:857:65: warning: no header providing "o2::aod::mcparticle::McCollisionId" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1021:31: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1021:56: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1021:77: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1022:69: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1022:98: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1022:212: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1022:244: warning: no header providing "o2::aod::track::itsChi2NCl" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1022:290: warning: no header providing "o2::aod::track::tpcChi2NCl" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1024:26: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1024:40: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1024:50: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1024:63: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1026:49: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1063:11: warning: variable 'centrality' is not initialized [cppcoreguidelines-init-variables] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1095:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1097:333: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1097:369: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1122:76: warning: no header providing "o2::aod::mccollision::posZ" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1123:40: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1123:89: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1123:116: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] ``` #### `PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx` ```text PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:20:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:21:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:23:1: warning: included header GFWWeightsList.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:25:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:31:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:34:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:38:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:49:1: warning: included header numeric is not used directly [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:57:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:71:36: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:91:8: warning: constructor does not initialize these fields: ccdb, fSecondAxis, hFindPtBin, funcV2, funcV3, funcV4 [cppcoreguidelines-pro-type-member-init] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:120:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:123:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:170:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:172:10: warning: constructor does not initialize these fields: mAcceptance [cppcoreguidelines-pro-type-member-init] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:173:5: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:179:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:188:34: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:190:45: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:285:31: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:285:56: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:285:77: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:286:69: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:286:98: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:286:212: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:286:244: warning: no header providing "o2::aod::track::itsChi2NCl" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:286:290: warning: no header providing "o2::aod::track::tpcChi2NCl" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:288:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:288:17: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:288:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:289:76: warning: no header providing "o2::aod::mccollision::posZ" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:290:76: warning: no header providing "o2::aod::mcparticle::eta" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:290:179: warning: no header providing "o2::aod::mcparticle::pt" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:292:26: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:292:40: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:292:63: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:294:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:346:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:384:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:384:32: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:384:59: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:384:86: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:391:95: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:475:5: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:503:41: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:555:12: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:571:35: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:594:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:608:24: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:616:24: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:631:29: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:685:52: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:695:52: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:705:52: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:715:52: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:725:52: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:735:52: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:745:52: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:754:52: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:763:52: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:907:62: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:912:62: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:913:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:1003:22: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:1041:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:1070:60: warning: no header providing "o2::aod::mctracklabel::McParticleId" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:1103:65: warning: no header providing "o2::aod::mcparticle::McCollisionId" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:1291:49: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:1343:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:1345:367: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:1345:403: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:1375:40: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:1375:89: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:1375:116: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] ``` #### `PWGCF/JCorran/Core/FlowJHistManager.cxx` ```text PWGCF/JCorran/Core/FlowJHistManager.cxx:30:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/FlowJHistManager.cxx:37:9: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/FlowJHistManager.cxx:39:24: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/FlowJHistManager.cxx:150:71: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ``` #### `PWGCF/JCorran/Core/FlowJHistManager.h` ```text PWGCF/JCorran/Core/FlowJHistManager.h:19:1: warning: included header vector is not used directly [misc-include-cleaner] PWGCF/JCorran/Core/FlowJHistManager.h:20:1: warning: included header array is not used directly [misc-include-cleaner] PWGCF/JCorran/Core/FlowJHistManager.h:21:1: warning: included header string is not used directly [misc-include-cleaner] PWGCF/JCorran/Core/FlowJHistManager.h:23:1: warning: included header TH1.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Core/FlowJHistManager.h:24:1: warning: included header TH2.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Core/FlowJHistManager.h:25:1: warning: included header TH3.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Core/FlowJHistManager.h:26:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Core/FlowJHistManager.h:27:1: warning: included header TProfile2D.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Core/FlowJHistManager.h:48:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/FlowJHistManager.h:108:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/JCorran/Core/FlowJHistManager.h:181:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/JCorran/Core/FlowJHistManager.h:311:3: warning: no header providing "ClassDefNV" is directly included [misc-include-cleaner] ``` #### `PWGCF/JCorran/Core/FlowJSPCAnalysis.cxx` ```text PWGCF/JCorran/Core/FlowJSPCAnalysis.cxx:24:1: warning: no header providing "TComplex" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/FlowJSPCAnalysis.cxx:81:10: warning: variable 'correlationNum' is not initialized [cppcoreguidelines-init-variables] PWGCF/JCorran/Core/FlowJSPCAnalysis.cxx:82:10: warning: variable 'weightCorrelationNum' is not initialized [cppcoreguidelines-init-variables] PWGCF/JCorran/Core/FlowJSPCAnalysis.cxx:83:10: warning: variable 'correlationDenom' is not initialized [cppcoreguidelines-init-variables] PWGCF/JCorran/Core/FlowJSPCAnalysis.cxx:84:10: warning: variable 'weightCorrelationDenom' is not initialized [cppcoreguidelines-init-variables] PWGCF/JCorran/Core/FlowJSPCAnalysis.cxx:116:14: warning: no header providing "std::isnan" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/FlowJSPCAnalysis.cxx:122:5: warning: Value stored to 'correlationNum' is never read [clang-analyzer-deadcode.DeadStores] PWGCF/JCorran/Core/FlowJSPCAnalysis.cxx:123:5: warning: Value stored to 'weightCorrelationNum' is never read [clang-analyzer-deadcode.DeadStores] PWGCF/JCorran/Core/FlowJSPCAnalysis.cxx:124:5: warning: Value stored to 'correlationDenom' is never read [clang-analyzer-deadcode.DeadStores] PWGCF/JCorran/Core/FlowJSPCAnalysis.cxx:125:5: warning: Value stored to 'weightCorrelationDenom' is never read [clang-analyzer-deadcode.DeadStores] PWGCF/JCorran/Core/FlowJSPCAnalysis.cxx:133:27: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/FlowJSPCAnalysis.cxx:262:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/FlowJSPCAnalysis.cxx:266:3: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ``` #### `PWGCF/JCorran/Core/FlowJSPCAnalysis.h` ```text PWGCF/JCorran/Core/FlowJSPCAnalysis.h:19:1: warning: included header array is not used directly [misc-include-cleaner] PWGCF/JCorran/Core/FlowJSPCAnalysis.h:22:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Core/FlowJSPCAnalysis.h:29:7: warning: constructor does not initialize these fields: qvecs, fHarmosArray, fCorrelDenoms [cppcoreguidelines-pro-type-member-init] PWGCF/JCorran/Core/FlowJSPCAnalysis.h:49:7: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/FlowJSPCAnalysis.h:52:75: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/FlowJSPCAnalysis.h:58:10: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/FlowJSPCAnalysis.h:59:48: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/FlowJSPCAnalysis.h:71:5: warning: no header providing "memcpy" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/FlowJSPCAnalysis.h:74:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/FlowJSPCAnalysis.h:86:13: warning: member 'mNqHarmos' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/JCorran/Core/FlowJSPCAnalysis.h:87:13: warning: member 'mNqPowers' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/JCorran/Core/FlowJSPCAnalysis.h:96:3: warning: no header providing "ClassDefNV" is directly included [misc-include-cleaner] ``` #### `PWGCF/JCorran/Core/FlowJSPCObservables.h` ```text PWGCF/JCorran/Core/FlowJSPCObservables.h:19:1: warning: included header HistogramRegistry.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Core/FlowJSPCObservables.h:36:9: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/FlowJSPCObservables.h:51:9: warning: no header providing "memcpy" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/FlowJSPCObservables.h:110:3: warning: no header providing "ClassDefNV" is directly included [misc-include-cleaner] ``` #### `PWGCF/JCorran/Core/JEPFlowAnalysis.cxx` ```text PWGCF/JCorran/Core/JEPFlowAnalysis.cxx:18:46: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JEPFlowAnalysis.cxx:18:59: warning: no header providing "Float_t" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JEPFlowAnalysis.cxx:22:27: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `PWGCF/JCorran/Core/JEPFlowAnalysis.h` ```text PWGCF/JCorran/Core/JEPFlowAnalysis.h:22:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/JCorran/Core/JEPFlowAnalysis.h:23:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/JCorran/Core/JEPFlowAnalysis.h:24:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGCF/JCorran/Core/JEPFlowAnalysis.h:32:29: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JEPFlowAnalysis.h:32:45: warning: no header providing "Float_t" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JEPFlowAnalysis.h:40:7: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JEPFlowAnalysis.h:44:60: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JEPFlowAnalysis.h:54:74: warning: no header providing "TMath::TwoPi" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JEPFlowAnalysis.h:60:3: warning: no header providing "ClassDefNV" is directly included [misc-include-cleaner] ``` #### `PWGCF/JCorran/Core/JFFlucAnalysis.cxx` ```text PWGCF/JCorran/Core/JFFlucAnalysis.cxx:18:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysis.cxx:22:1: warning: constructor does not initialize these fields: ph1, pht, phs [cppcoreguidelines-pro-type-member-init] PWGCF/JCorran/Core/JFFlucAnalysis.cxx:22:36: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysis.cxx:36:1: warning: constructor does not initialize these fields: ph1, pht, phs [cppcoreguidelines-pro-type-member-init] PWGCF/JCorran/Core/JFFlucAnalysis.cxx:50:1: warning: constructor does not initialize these fields: ph1, pht, phs [cppcoreguidelines-pro-type-member-init] PWGCF/JCorran/Core/JFFlucAnalysis.cxx:89:152: warning: no header providing "UInt_t" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysis.cxx:159:31: warning: no header providing "Option_t" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysis.cxx:170:5: warning: no header providing "Double_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/JCorran/Core/JFFlucAnalysis.h` ```text PWGCF/JCorran/Core/JFFlucAnalysis.h:37:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGCF/JCorran/Core/JFFlucAnalysis.h:45:17: warning: no header providing "Option_t" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysis.h:57:31: warning: no header providing "UInt_t" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysis.h:163:7: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysis.h:190:3: warning: no header providing "Float_t" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysis.h:204:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx` ```text PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:18:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:26:44: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:26:73: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:26:278: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:26:307: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:26:326: warning: no header providing "JFFlucAnalysis" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:29:7: warning: no header providing "JFFlucAnalysis::HIST_TH1_CENTRALITY" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:29:55: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:29:74: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:29:136: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:30:7: warning: no header providing "JFFlucAnalysis::HIST_TH1_IMPACTPARAM" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:31:7: warning: no header providing "JFFlucAnalysis::HIST_TH1_ZVERTEX" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:43:9: warning: no header providing "JFFlucAnalysis::HIST_THN_SPARSE_MULTCORR" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:43:62: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:50:7: warning: no header providing "JFFlucAnalysis::HIST_THN_PHIETAZ" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:51:7: warning: no header providing "JFFlucAnalysis::HIST_THN_PTETA" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:52:21: warning: no header providing "JFFlucAnalysis::kNH" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:53:21: warning: no header providing "JFFlucAnalysis::nKL" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:54:7: warning: no header providing "JFFlucAnalysis::HIST_THN_SC_with_QC_4corr" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:55:7: warning: no header providing "JFFlucAnalysis::HIST_THN_SC_with_QC_2corr" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:56:7: warning: no header providing "JFFlucAnalysis::HIST_THN_SC_with_QC_2corr_gap" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:57:8: warning: no header providing "UInt_t" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:57:19: warning: no header providing "JFFlucAnalysis::HIST_THN_V4V2star_2" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:57:44: warning: no header providing "JFFlucAnalysis::HIST_THN_COUNT" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:62:7: warning: no header providing "JFFlucAnalysis::HIST_THN_SPARSE_VN" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:63:7: warning: no header providing "JFFlucAnalysis::HIST_THN_SPARSE_VN_VN" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.cxx:64:26: warning: no header providing "JFFlucAnalysis::HIST_THN_SPARSE_COUNT" is directly included [misc-include-cleaner] ``` #### `PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.h` ```text PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.h:24:74: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.h:24:319: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.h:24:335: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JFFlucAnalysisO2Hist.h:25:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] ``` #### `PWGCF/JCorran/Core/JQVectors.h` ```text PWGCF/JCorran/Core/JQVectors.h:21:20: warning: no header providing "UInt_t" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JQVectors.h:37:31: warning: no header providing "std::conditional_t" is directly included [misc-include-cleaner] PWGCF/JCorran/Core/JQVectors.h:74:9: warning: no header providing "Double_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/JCorran/DataModel/JCatalyst.h` ```text PWGCF/JCorran/DataModel/JCatalyst.h:21:1: error: a type specifier is required for all declarations [clang-diagnostic-error] PWGCF/JCorran/DataModel/JCatalyst.h:21:20: error: unknown type name 'Multiplicity' [clang-diagnostic-error] PWGCF/JCorran/DataModel/JCatalyst.h:21:34: error: unknown type name 'multiplicity' [clang-diagnostic-error] PWGCF/JCorran/DataModel/JCatalyst.h:24:1: error: a type specifier is required for all declarations [clang-diagnostic-error] PWGCF/JCorran/DataModel/JCatalyst.h:24:19: error: unexpected namespace name 'jcollision': expected expression [clang-diagnostic-error] PWGCF/JCorran/DataModel/JCatalyst.h:24:19: error: use of undeclared identifier 'JCollisions'; did you mean 'jcollision'? [clang-diagnostic-error] PWGCF/JCorran/DataModel/JCatalyst.h:25:23: error: no member named 'soa' in namespace 'o2' [clang-diagnostic-error] PWGCF/JCorran/DataModel/JCatalyst.h:25:34: error: expected expression [clang-diagnostic-error] PWGCF/JCorran/DataModel/JCatalyst.h:25:35: error: expected expression [clang-diagnostic-error] PWGCF/JCorran/DataModel/JCatalyst.h:26:19: error: use of undeclared identifier 'bc' [clang-diagnostic-error] PWGCF/JCorran/DataModel/JCatalyst.h:27:19: error: use of undeclared identifier 'collision'; did you mean 'jcollision'? [clang-diagnostic-error] PWGCF/JCorran/DataModel/JCatalyst.h:27:30: error: no member named 'PosZ' in namespace 'o2::aod::jcollision' [clang-diagnostic-error] PWGCF/JCorran/DataModel/JCatalyst.h:28:31: error: no member named 'Multiplicity' in namespace 'o2::aod::jcollision' [clang-diagnostic-error] PWGCF/JCorran/DataModel/JCatalyst.h:29:20: error: use of undeclared identifier 'JCollisions'; did you mean 'jcollision'? [clang-diagnostic-error] PWGCF/JCorran/DataModel/JCatalyst.h:29:33: error: no type named 'iterator' in namespace 'o2::aod::jcollision' [clang-diagnostic-error] PWGCF/JCorran/DataModel/JCatalyst.h:33:1: error: a type specifier is required for all declarations [clang-diagnostic-error] PWGCF/JCorran/DataModel/JCatalyst.h:33:26: error: unexpected namespace name 'jcollision': expected expression [clang-diagnostic-error] PWGCF/JCorran/DataModel/JCatalyst.h:33:26: error: use of undeclared identifier 'JCollision'; did you mean 'jcollision'? [clang-diagnostic-error] PWGCF/JCorran/DataModel/JCatalyst.h:33:38: error: unexpected namespace name 'jcollision': expected expression [clang-diagnostic-error] ``` #### `PWGCF/JCorran/TableProducer/JCatalyst.cxx` ```text PWGCF/JCorran/TableProducer/JCatalyst.cxx:15:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:16:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:17:1: warning: included header LorentzVector.h is not used directly [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:18:1: warning: included header TRandom.h is not used directly [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:22:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:23:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:26:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:32:1: warning: included header HistogramRegistry.h is not used directly [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:34:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:35:1: warning: included header CandidateReconstructionTables.h is not used directly [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:36:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:37:1: warning: included header DCA.h is not used directly [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:38:1: warning: included header V0.h is not used directly [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:50:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:56:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:58:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:70:42: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:70:68: warning: no header providing "o2::aod::collision::CollisionFlagsRun2" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:74:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:74:32: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:74:53: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:75:81: warning: no header providing "o2::aod::collision::flags" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:77:42: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:77:73: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:78:95: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:80:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:83:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:88:21: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:88:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:88:45: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:88:150: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:88:163: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:92:34: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:103:36: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:121:27: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] PWGCF/JCorran/TableProducer/JCatalyst.cxx:125:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/JCorran/Tasks/flowJNUACreation.cxx` ```text PWGCF/JCorran/Tasks/flowJNUACreation.cxx:19:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/flowJNUACreation.cxx:27:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/flowJNUACreation.cxx:36:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/flowJNUACreation.cxx:54:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/JCorran/Tasks/flowJNUACreation.cxx:55:58: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/flowJNUACreation.cxx:59:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/flowJNUACreation.cxx:60:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/flowJNUACreation.cxx:81:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/flowJNUACreation.cxx:85:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/flowJNUACreation.cxx:93:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/flowJNUACreation.cxx:114:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/JCorran/Tasks/flowJNUACreation.cxx:134:5: warning: no header providing "Int_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/JCorran/Tasks/flowJSPCAnalysis.cxx` ```text PWGCF/JCorran/Tasks/flowJSPCAnalysis.cxx:16:1: warning: included header chrono is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/flowJSPCAnalysis.cxx:19:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/flowJSPCAnalysis.cxx:27:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/flowJSPCAnalysis.cxx:35:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/flowJSPCAnalysis.cxx:57:53: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/flowJSPCAnalysis.cxx:71:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/flowJSPCAnalysis.cxx:75:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/flowJSPCAnalysis.cxx:94:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/flowJSPCAnalysis.cxx:129:42: warning: no header providing "std::experimental::is_detected" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/flowJSPCAnalysis.cxx:153:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx` ```text PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:14:1: warning: included header type_traits is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:16:1: warning: included header array is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:18:1: warning: included header chrono is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:22:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:23:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:24:1: warning: included header TF1.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:25:1: warning: included header TVector2.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:26:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:27:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:28:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:29:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:35:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:36:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:37:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:38:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:41:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:45:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:46:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:49:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:51:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:53:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:54:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:56:1: warning: included header CcdbApi.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:57:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:68:8: warning: constructor does not initialize these fields: DetId, RefAId, RefBId, centrality [cppcoreguidelines-pro-type-member-init] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:83:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:85:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:104:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:105:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:153:46: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:156:46: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:162:72: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:186:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:199:16: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:199:49: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPDzeroFlowAnalysis.cxx:215:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx` ```text PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:20:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:23:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:29:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:40:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:40:37: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:42:23: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:44:8: warning: constructor does not initialize these fields: ccdb, detId, refAId, refBId, harmInd [cppcoreguidelines-pro-type-member-init] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:46:52: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:49:16: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:50:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:54:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:55:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:75:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:76:44: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:80:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:80:37: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:80:69: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:80:86: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:90:15: warning: no header providing "TProfile3D" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:115:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:121:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:122:47: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:130:40: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:155:69: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:155:108: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:158:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:166:63: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:166:118: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:170:67: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:222:25: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:223:28: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:233:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:323:67: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:323:128: warning: no header providing "std::sin" is directly included [misc-include-cleaner] ``` #### `PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx` ```text PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:20:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:23:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:27:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:45:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:46:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:48:25: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:63:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:66:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:68:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:90:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:126:58: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:129:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:129:31: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:129:52: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:135:37: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:137:37: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:141:36: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:141:46: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:143:42: warning: no header providing "o2::aod::FullTracks" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:143:59: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:143:144: warning: no header providing "o2::aod::TracksCov" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:145:69: warning: no header providing "o2::aod::McCollisionLabel" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:147:61: warning: no header providing "o2::aod::McTrackLabel" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:149:42: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:149:52: warning: no header providing "o2::aod::Run2BCInfos" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:149:70: warning: no header providing "o2::aod::Timestamps" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:154:62: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:163:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:191:22: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:193:41: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:272:28: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:304:17: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:360:30: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:403:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:403:56: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:521:23: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:522:23: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:524:23: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:790:11: warning: variable 'centrality' is not initialized [cppcoreguidelines-init-variables] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:807:11: warning: variable 'centrality' is not initialized [cppcoreguidelines-init-variables] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:827:11: warning: variable 'centrality' is not initialized [cppcoreguidelines-init-variables] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:939:25: warning: no header providing "std::exception" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx:946:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx` ```text PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:15:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:16:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:17:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:18:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:20:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:23:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:24:1: warning: included header V0.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:47:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:49:8: warning: constructor does not initialize these fields: multCutFormulaParamIndex, pcf, pcf2Prong [cppcoreguidelines-pro-type-member-init] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:63:51: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:66:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:66:58: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:67:70: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:78:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:86:14: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:88:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:90:25: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:113:68: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:124:12: warning: no header providing "std::fill_n" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:127:23: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:136:41: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:162:38: warning: no header providing "std::experimental::is_detected" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:189:28: warning: no header providing "std::popcount" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:195:63: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:199:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:201:86: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:221:14: warning: no header providing "std::popcount" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:251:123: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] ``` #### `PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx` ```text PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:21:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:22:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:23:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:24:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:27:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:29:1: warning: included header HistogramRegistry.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:30:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:32:1: warning: included header V0.h is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:37:1: warning: included header type_traits is not used directly [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:44:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:48:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:61:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:99:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:162:20: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:170:20: warning: an assignment within an 'if' condition is bug-prone [bugprone-assignment-in-if-condition] PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:185:23: warning: an assignment within an 'if' condition is bug-prone [bugprone-assignment-in-if-condition] PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:201:13: warning: variable 'phiWeight' is not initialized [cppcoreguidelines-init-variables] PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:201:24: warning: variable 'effWeight' is not initialized [cppcoreguidelines-init-variables] PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:203:9: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:235:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:240:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h` ```text PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:20:1: warning: included header string is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:21:1: warning: included header vector is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:24:10: error: expected class name [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:26:3: error: no template named 'Configurable' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:27:3: error: no template named 'Configurable' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:28:3: error: no template named 'Configurable' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:29:3: error: no template named 'Configurable' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:30:3: error: no template named 'Configurable' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:31:3: error: no template named 'Configurable' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:32:3: error: no template named 'Configurable' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:33:3: error: no template named 'Configurable' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:34:3: error: no template named 'Configurable' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:35:3: error: no template named 'Configurable' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:36:3: error: no template named 'Configurable' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:37:3: error: no template named 'Configurable' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:38:3: error: no template named 'Configurable' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:39:3: error: no template named 'Configurable' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:40:3: error: no template named 'Configurable' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:41:3: error: no template named 'Configurable' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:42:3: error: no template named 'Configurable' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h:43:3: error: no template named 'Configurable' [clang-diagnostic-error] ``` #### `PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h` ```text PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:19:1: warning: included header vector is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:38:1: error: unknown type name 'TString' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:39:11: error: use of undeclared identifier 'TList' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:40:28: error: use of undeclared identifier 'OutputObjHandlingPolicy' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:41:28: error: use of undeclared identifier 'OutputObjSourceType' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:42:1: error: unknown type name 'TProfile' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:42:22: warning: no header providing "NULL" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:43:1: error: unknown type name 'TObjArray' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:47:3: error: unknown type name 'TString' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:48:3: error: unknown type name 'TString' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:53:3: error: unknown type name 'TString' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:55:3: error: unknown type name 'int64_t' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:55:20: error: use of undeclared identifier 'eRunTime_N' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:66:17: error: use of undeclared identifier 'eProcess_N' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:67:3: error: unknown type name 'TString' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:70:3: error: unknown type name 'TArrayI' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:74:3: error: unknown type name 'TStopwatch' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:74:22: error: use of undeclared identifier 'eTimer_N' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:78:3: error: unknown type name 'TString' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:79:3: error: unknown type name 'TString' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-DataMembers.h:81:3: error: unknown type name 'TDatabasePDG' [clang-diagnostic-error] ``` #### `PWGCF/MultiparticleCorrelations/Core/MuPa-Enums.h` ```text PWGCF/MultiparticleCorrelations/Core/MuPa-Enums.h:90:32: error: use of undeclared identifier 'kBlack' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-Enums.h:91:36: error: use of undeclared identifier 'kGray' [clang-diagnostic-error] ``` #### `PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h` ```text PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:20:1: warning: included header string is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:21:1: warning: included header vector is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:38:7: error: use of undeclared identifier 'tc' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:39:5: error: use of undeclared identifier 'StartFunction' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:43:3: error: unknown type name 'TList' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:43:21: error: unknown type name 'TList' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:45:3: error: use of undeclared identifier 'fBaseList' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:48:3: error: use of undeclared identifier 'fBasePro' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:48:18: error: unknown type name 'TProfile' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:50:3: error: use of undeclared identifier 'fBasePro' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:51:3: error: use of undeclared identifier 'fBasePro' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:51:26: error: use of undeclared identifier 'eColor' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:52:3: error: use of undeclared identifier 'fBasePro' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:52:26: error: use of undeclared identifier 'eFillColor' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:57:7: error: use of undeclared identifier 'tc' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:60:5: error: use of undeclared identifier 'fBasePro' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:60:39: error: use of undeclared identifier 'eTaskIsConfiguredFromJson' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:60:66: error: use of undeclared identifier 'TString' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:60:116: error: use of undeclared identifier 'tc' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:62:5: error: use of undeclared identifier 'fBasePro' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:62:39: error: use of undeclared identifier 'eTaskName' [clang-diagnostic-error] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:3318:32: warning: no header providing "NULL" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:4492:7: warning: variable 'nBins_x_CorrelationsVsInteractionRateVs' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:4493:10: warning: variable 'min_x_CorrelationsVsInteractionRateVs' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:4494:10: warning: variable 'max_x_CorrelationsVsInteractionRateVs' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:5571:9: warning: variable 'dim1' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:5574:9: warning: variable 'dim3' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:5575:9: warning: variable 'dim4' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:5615:11: warning: variable 'dim2' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:5618:11: warning: variable 'dim4' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:5619:11: warning: variable 'dim5' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:6808:9: warning: variable 'nMult' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:6864:14: warning: variable 'Psi1' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:6865:14: warning: variable 'Psi2' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:6866:14: warning: variable 'Psi3' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:6883:12: warning: variable 'dPt_min' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:6884:12: warning: variable 'dPt_max' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:6885:12: warning: variable 'dEta_min' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:6886:12: warning: variable 'dEta_max' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:8237:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:8237:13: warning: variable 'startOfRun' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:8238:13: warning: variable 'endOfRun' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:8539:20: warning: variable 'bin' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:8555:20: warning: variable 'bin' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:10274:20: warning: variable 'bin' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:10291:20: warning: variable 'bin' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:11453:14: warning: variable 'nestedLoopValue' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:11522:14: warning: variable 'nestedLoopValue' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:11593:14: warning: variable 'nestedLoopValue' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:11666:14: warning: variable 'nestedLoopValue' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:11940:18: warning: variable 'nestedLoopValue' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:12188:20: warning: variable 'nestedLoopValue' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:12474:20: warning: variable 'nestedLoopValue' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13093:7: warning: variable 'nParticles' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13104:12: warning: variable 'dPhi1' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13105:12: warning: variable 'dW1' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13110:14: warning: variable 'dPhi2' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13111:14: warning: variable 'dW2' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13164:12: warning: variable 'dPhi1' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13165:12: warning: variable 'dW1' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13170:14: warning: variable 'dPhi2' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13171:14: warning: variable 'dW2' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13176:16: warning: variable 'dPhi3' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13177:16: warning: variable 'dW3' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13182:18: warning: variable 'dPhi4' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13183:18: warning: variable 'dW4' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13229:12: warning: variable 'dPhi1' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13230:12: warning: variable 'dW1' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13235:14: warning: variable 'dPhi2' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13236:14: warning: variable 'dW2' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13241:16: warning: variable 'dPhi3' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13242:16: warning: variable 'dW3' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13247:18: warning: variable 'dPhi4' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13248:18: warning: variable 'dW4' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13253:20: warning: variable 'dPhi5' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13254:20: warning: variable 'dW5' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13259:22: warning: variable 'dPhi6' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13260:22: warning: variable 'dW6' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13308:12: warning: variable 'dPhi1' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13309:12: warning: variable 'dW1' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13314:14: warning: variable 'dPhi2' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13315:14: warning: variable 'dW2' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13320:16: warning: variable 'dPhi3' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13321:16: warning: variable 'dW3' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13326:18: warning: variable 'dPhi4' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13327:18: warning: variable 'dW4' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13332:20: warning: variable 'dPhi5' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13333:20: warning: variable 'dW5' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13338:22: warning: variable 'dPhi6' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13339:22: warning: variable 'dW6' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13344:24: warning: variable 'dPhi7' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13345:24: warning: variable 'dW7' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13350:26: warning: variable 'dPhi8' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13351:26: warning: variable 'dW8' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:14150:11: warning: variable 'min' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:14151:11: warning: variable 'max' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:15424:7: warning: variable 'bin' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:15517:7: warning: variable 'bin' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:15537:10: warning: variable 'weight' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:15583:7: warning: variable 'binX' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:15606:7: warning: variable 'bin' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:15619:10: warning: variable 'diffWeight' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:15688:9: warning: variable 'nPtBins' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:15717:9: warning: variable 'nEtaBins' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:15876:7: warning: variable 'bin' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16132:7: warning: variable 'nParticles' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16150:12: warning: variable 'dPhi1' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16151:12: warning: variable 'dW1' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16162:14: warning: variable 'dPhi2' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16163:14: warning: variable 'dW2' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16174:16: warning: variable 'dPhi3' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16175:16: warning: variable 'dW3' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16186:18: warning: variable 'dPhi4' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16187:18: warning: variable 'dW4' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16198:20: warning: variable 'dPhi5' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16199:20: warning: variable 'dW5' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16210:22: warning: variable 'dPhi6' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16211:22: warning: variable 'dW6' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16222:24: warning: variable 'dPhi7' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16223:24: warning: variable 'dW7' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16234:26: warning: variable 'dPhi8' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16235:26: warning: variable 'dW8' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16246:28: warning: variable 'dPhi9' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16247:28: warning: variable 'dW9' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16258:30: warning: variable 'dPhi10' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16259:30: warning: variable 'dW10' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16270:32: warning: variable 'dPhi11' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16271:32: warning: variable 'dW11' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16282:34: warning: variable 'dPhi12' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16283:34: warning: variable 'dW12' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16410:12: warning: variable 'dPhi1' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16411:12: warning: variable 'dW1' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16422:14: warning: variable 'dPhi2' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16423:14: warning: variable 'dW2' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16434:16: warning: variable 'dPhi3' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16435:16: warning: variable 'dW3' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16446:18: warning: variable 'dPhi4' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16447:18: warning: variable 'dW4' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16458:20: warning: variable 'dPhi5' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16459:20: warning: variable 'dW5' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16470:22: warning: variable 'dPhi6' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16471:22: warning: variable 'dW6' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16482:24: warning: variable 'dPhi7' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16483:24: warning: variable 'dW7' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16494:26: warning: variable 'dPhi8' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16495:26: warning: variable 'dW8' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16506:28: warning: variable 'dPhi9' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16507:28: warning: variable 'dW9' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16518:30: warning: variable 'dPhi10' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16519:30: warning: variable 'dW10' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16530:32: warning: variable 'dPhi11' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16531:32: warning: variable 'dW11' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16542:34: warning: variable 'dPhi12' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16543:34: warning: variable 'dW12' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16633:12: warning: variable 'dPhi1' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16634:12: warning: variable 'dW1' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16645:14: warning: variable 'dPhi2' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16646:14: warning: variable 'dW2' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16657:16: warning: variable 'dPhi3' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16658:16: warning: variable 'dW3' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16669:18: warning: variable 'dPhi4' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16670:18: warning: variable 'dW4' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16681:20: warning: variable 'dPhi5' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16682:20: warning: variable 'dW5' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16693:22: warning: variable 'dPhi6' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16694:22: warning: variable 'dW6' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16705:24: warning: variable 'dPhi7' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16706:24: warning: variable 'dW7' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16717:26: warning: variable 'dPhi8' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16718:26: warning: variable 'dW8' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16729:28: warning: variable 'dPhi9' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16730:28: warning: variable 'dW9' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16741:30: warning: variable 'dPhi10' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16742:30: warning: variable 'dW10' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16753:32: warning: variable 'dPhi11' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16754:32: warning: variable 'dW11' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16765:34: warning: variable 'dPhi12' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:16766:34: warning: variable 'dW12' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:17118:11: warning: variable 'b' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:17212:14: warning: variable 'hadronicRate' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:17383:9: warning: variable 'j' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:17384:9: warning: variable 'temp' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:17548:3: warning: no header providing "exit" is directly included [misc-include-cleaner] ``` #### `PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx` ```text PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:25:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:26:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:78:1: warning: included header TComplex.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:79:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:80:1: warning: included header TExMap.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:82:1: warning: included header TF3.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:83:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:84:1: warning: included header TFormula.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:85:1: warning: included header TGrid.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:86:1: warning: included header TH1D.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:87:1: warning: included header THnSparse.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:88:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:89:1: warning: included header TObjString.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:90:1: warning: included header TProfile2D.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:91:1: warning: included header TProfile3D.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:93:1: warning: included header TStopwatch.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:94:1: warning: included header TSystem.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:96:1: warning: included header Riostream.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:98:1: warning: included header complex is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:105:1: warning: included header MuPa-GlobalConstants.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:108:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:112:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:122:1: warning: included header MuPa-Configurables.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:128:1: warning: included header MuPa-MemberFunctions.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:133:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:146:23: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:233:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ab.cxx:356:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx` ```text PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:20:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:29:1: warning: included header Expressions.h is not used directly [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:91:4: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:198:15: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:202:24: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:234:8: warning: constructor does not initialize these fields: fEventDepHists, fTrackDepHists, fCorrelatorList [cppcoreguidelines-pro-type-member-init] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:236:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:239:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:241:10: warning: no header providing "std::move" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:452:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:455:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:466:14: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:474:8: warning: no header providing "std::map" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:483:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:483:13: warning: no header providing "TList" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:486:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:501:25: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:540:17: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:620:12: warning: variable 'corList' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:621:5: warning: no header providing "TProfile" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:624:17: warning: unused local variable 'corName' of type 'std::string' (aka 'basic_string') [bugprone-unused-local-non-trivial-variable] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:678:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:794:9: warning: variable 'bin' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:843:9: warning: variable 'Index' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:1293:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:1293:45: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:1294:41: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:1294:70: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] ``` #### `PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx` ```text PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:41:8: warning: constructor does not initialize these fields: ccdb, triggSign, assocSign, v0Efficiency, candMass, assocPID, deltaPhi, deltaEta [cppcoreguidelines-pro-type-member-init] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:42:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:56:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:58:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:95:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:95:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:102:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:103:21: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:103:42: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:104:46: warning: no header providing "o2::aod::mccollision::posZ" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:105:31: warning: no header providing "o2::aod::evsel::sel8" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:106:39: warning: no header providing "o2::aod::evsel::trackOccupancyInTimeRange" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:109:32: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:110:38: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:111:25: warning: no header providing "requireGlobalTrackInFilter" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:114:46: warning: no header providing "o2::aod::mcparticle::eta" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:117:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:117:51: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:117:61: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:117:94: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:119:57: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:119:70: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:119:88: warning: no header providing "o2::aod::TrackSelection" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:124:66: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:126:52: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:129:88: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:132:111: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:137:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:137:64: warning: no header providing "o2::aod::mcparticle::pt" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:139:68: warning: no header providing "o2::aod::mcparticle::pdgCode" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:146:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:147:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:147:61: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:148:3: warning: no header providing "o2::framework::PresliceUnsorted" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:148:78: warning: no header providing "o2::aod::mccollisionlabel::mcCollisionId" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:150:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:150:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:152:23: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:152:80: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:153:108: warning: no header providing "o2::aod::mccollision::PosZ" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:157:3: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:158:3: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:170:3: warning: no header providing "TH3D" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:176:3: warning: no header providing "TH2D" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:190:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:193:5: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:199:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:203:62: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:212:46: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:213:26: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:216:72: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:368:5: warning: no header providing "TList" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:390:120: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:400:16: warning: no header providing "std::signbit" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:471:103: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:482:31: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:545:52: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:545:70: warning: no header providing "o2::soa::CombinationsFullIndexPolicy" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:604:100: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:623:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:685:54: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:875:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:884:27: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:1010:40: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:1017:40: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:1025:42: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:1181:7: warning: uninitialized record type: 'massArray' [cppcoreguidelines-pro-type-member-init] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:1181:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:1182:7: warning: uninitialized record type: 'dMomArray' [cppcoreguidelines-pro-type-member-init] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:1185:22: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:1185:34: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:1232:14: warning: variable 'dPhiStar' is not initialized [cppcoreguidelines-init-variables] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:1240:7: warning: Variable 'r' with floating point type 'double' should not be used as a loop counter [clang-analyzer-security.FloatLoopCounter] PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx:1241:58: warning: no header providing "std::asin" is directly included [misc-include-cleaner] ``` #### `PWGCF/TableProducer/dptDptFilter.cxx` ```text PWGCF/TableProducer/dptDptFilter.cxx:22:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:23:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:26:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:31:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:39:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:40:1: warning: included header TFolder.h is not used directly [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:47:1: warning: included header TProfile3D.h is not used directly [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:48:1: warning: included header TROOT.h is not used directly [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:274:58: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:274:156: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:307:8: warning: constructor does not initialize these fields: fhMultiplicity, fhV0Multiplicity, fhCL1Multiplicity, fhCL1EtaGapMultiplicity, fhV0MMultPercentile, fhCL1MultPercentile, fhCL1EtaGapMultPercentile [cppcoreguidelines-pro-type-member-init] PWGCF/TableProducer/dptDptFilter.cxx:357:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/TableProducer/dptDptFilter.cxx:358:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/TableProducer/dptDptFilter.cxx:359:33: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/TableProducer/dptDptFilter.cxx:539:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:541:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:554:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:555:48: warning: no header providing "INT64_MAX" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:559:128: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:559:143: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:559:158: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:559:173: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:559:188: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:559:203: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:559:218: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:559:233: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:559:248: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:559:263: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:559:278: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:559:296: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:559:312: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:559:328: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:559:344: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:559:360: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:559:376: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:559:392: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:559:408: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:560:169: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:560:184: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:560:199: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:560:214: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:560:229: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:560:244: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:560:259: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:560:274: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:560:289: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:560:304: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:560:319: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:569:117: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:569:132: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:569:147: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:569:162: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:569:177: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:569:192: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:569:207: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:569:222: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:569:237: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:569:252: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:569:267: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:586:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:586:58: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:588:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:659:101: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:663:175: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:669:190: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:670:190: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:684:122: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:684:144: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:685:111: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:685:133: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:690:233: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:695:239: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:699:242: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:702:242: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:704:237: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:705:241: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:706:244: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.cxx:771:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:788:84: warning: no header providing "o2::aod::Mults" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:839:16: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:839:59: warning: no header providing "o2::constants::lhc::LHCMaxBunches" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:844:3: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:1096:8: warning: constructor does not initialize these fields: ccdb, fPDG [cppcoreguidelines-pro-type-member-init] PWGCF/TableProducer/dptDptFilter.cxx:1102:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:1102:21: warning: no header providing "o2::ccdb::BasicCCDBManager" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:1218:46: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:1243:123: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:1456:3: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.cxx:1666:45: warning: no header providing "std::ios" is directly included [misc-include-cleaner] ``` #### `PWGCF/TableProducer/dptDptFilter.h` ```text PWGCF/TableProducer/dptDptFilter.h:32:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:34:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:48:1: warning: included header locale is not used directly [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:50:1: warning: included header ranges is not used directly [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:518:32: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:549:27: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:633:65: warning: no header providing "o2::aod::track::TrackTypeEnum" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:643:69: warning: no header providing "o2::aod::track::Run2Track" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:814:8: warning: no header providing "std::tm" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:818:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:818:28: warning: no header providing "std::mktime" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:822:5: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:842:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:875:12: warning: variable 'posEnd' is not initialized [cppcoreguidelines-init-variables] PWGCF/TableProducer/dptDptFilter.h:986:65: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.h:1023:37: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:1053:74: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:1055:73: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:1056:73: warning: no header providing "o2::aod::evsel::kIsVertexTRDmatched" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:1057:73: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:1058:74: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:1059:74: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:1060:77: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:1061:73: warning: no header providing "o2::aod::evsel::kIsGoodITSLayer3" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:1062:76: warning: no header providing "o2::aod::evsel::kIsGoodITSLayer0123" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:1063:75: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:1717:26: warning: member 'pdgcodes' of type 'const std::vector' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/TableProducer/dptDptFilter.h:1718:39: warning: member 'spnames' of type 'const std::vector' (aka 'const vector>') is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/TableProducer/dptDptFilter.h:1719:39: warning: member 'sptitles' of type 'const std::vector' (aka 'const vector>') is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/TableProducer/dptDptFilter.h:1720:39: warning: member 'spfnames' of type 'const std::vector' (aka 'const vector>') is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/TableProducer/dptDptFilter.h:1721:39: warning: member 'spadjnames' of type 'const std::vector' (aka 'const vector>') is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/TableProducer/dptDptFilter.h:1722:29: warning: member 'spmasses' of type 'const std::vector' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/TableProducer/dptDptFilter.h:1722:65: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:1722:103: warning: no header providing "o2::constants::physics::MassMuon" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:1722:137: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:1722:178: warning: no header providing "o2::constants::physics::MassKaonCharged" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:1722:219: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:1723:39: warning: member 'chadjnames' of type 'const std::vector' (aka 'const vector>') is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGCF/TableProducer/dptDptFilter.h:1727:3: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:1728:30: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:1735:57: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:1741:96: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TableProducer/dptDptFilter.h:1793:3: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/TableProducer/dptDptFilter.h:1862:28: warning: loop variable has narrower type 'uint8_t' than iteration's upper bound 'size_type' [bugprone-too-small-loop-variable] PWGCF/TableProducer/dptDptFilter.h:1943:26: warning: loop variable has narrower type 'uint8_t' than iteration's upper bound 'size_type' [bugprone-too-small-loop-variable] PWGCF/TableProducer/dptDptFilter.h:1953:28: warning: loop variable has narrower type 'uint8_t' than iteration's upper bound 'size_type' [bugprone-too-small-loop-variable] PWGCF/TableProducer/dptDptFilter.h:1994:26: warning: loop variable has narrower type 'uint8_t' than iteration's upper bound 'size_type' [bugprone-too-small-loop-variable] PWGCF/TableProducer/dptDptFilter.h:2001:28: warning: loop variable has narrower type 'uint8_t' than iteration's upper bound 'size_type' [bugprone-too-small-loop-variable] ``` #### `PWGCF/TableProducer/filter2Prong.cxx` ```text PWGCF/TableProducer/filter2Prong.cxx:22:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:26:1: warning: included header TypeTruncation.h is not used directly [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:45:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:47:8: warning: constructor does not initialize these fields: sigmaFormulaParamIndex [cppcoreguidelines-pro-type-member-init] PWGCF/TableProducer/filter2Prong.cxx:50:73: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:51:73: warning: no header providing "o2::constants::physics::MassKMinus" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:52:57: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:60:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:150:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:167:66: warning: no header providing "o2::aod::TrackSelection" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:167:87: warning: no header providing "o2::aod::pidTPCPi" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:167:102: warning: no header providing "o2::aod::pidTPCKa" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:167:117: warning: no header providing "o2::aod::pidTPCPr" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:167:132: warning: no header providing "o2::aod::pidTOFPi" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:167:147: warning: no header providing "o2::aod::pidTOFKa" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:167:162: warning: no header providing "o2::aod::pidTOFPr" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:167:177: warning: no header providing "o2::aod::pidTOFbeta" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:167:194: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:168:24: warning: no header providing "o2::aod::V0Datas" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:171:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:171:14: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:173:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:177:28: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:181:12: warning: no header providing "std::fill_n" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:183:23: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:185:39: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:214:52: warning: no header providing "o2::aod::hf_cand_2prong::DecayType" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:258:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:292:159: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:343:12: warning: variable 'pt1' is not initialized [cppcoreguidelines-init-variables] PWGCF/TableProducer/filter2Prong.cxx:343:17: warning: variable 'pt2' is not initialized [cppcoreguidelines-init-variables] PWGCF/TableProducer/filter2Prong.cxx:343:22: warning: variable 'pz1' is not initialized [cppcoreguidelines-init-variables] PWGCF/TableProducer/filter2Prong.cxx:343:27: warning: variable 'pz2' is not initialized [cppcoreguidelines-init-variables] PWGCF/TableProducer/filter2Prong.cxx:343:32: warning: variable 'p1' is not initialized [cppcoreguidelines-init-variables] PWGCF/TableProducer/filter2Prong.cxx:343:36: warning: variable 'p2' is not initialized [cppcoreguidelines-init-variables] PWGCF/TableProducer/filter2Prong.cxx:343:40: warning: variable 'angle' is not initialized [cppcoreguidelines-init-variables] PWGCF/TableProducer/filter2Prong.cxx:350:20: warning: no header providing "TMath::ACos" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:376:119: warning: no header providing "o2::constants::physics::MassK0" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:413:122: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:477:49: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:576:80: warning: no header providing "o2::aod::pidutils::tpcNSigma" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:577:80: warning: no header providing "o2::aod::pidutils::tofNSigma" is directly included [misc-include-cleaner] PWGCF/TableProducer/filter2Prong.cxx:593:21: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] ``` #### `PWGCF/TableProducer/filterCorrelations.cxx` ```text PWGCF/TableProducer/filterCorrelations.cxx:12:1: warning: included header CandidateReconstructionTables.h is not used directly [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:13:1: warning: included header CandidateSelectionTables.h is not used directly [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:20:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:27:1: warning: included header Output.h is not used directly [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:29:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:30:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:31:1: warning: included header TH3F.h is not used directly [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:43:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:56:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGCF/TableProducer/filterCorrelations.cxx:57:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:60:22: warning: no header providing "BIT" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:82:71: warning: no header providing "o2::aod::collision::CollisionFlagsRun2" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:110:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:110:13: warning: no header providing "TH3F" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:111:106: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:113:52: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:115:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:135:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:138:76: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:161:52: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:165:88: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:165:147: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:165:206: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:167:68: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:169:122: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:173:208: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:182:102: warning: no header providing "o2::aod::pidTPCPr" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:182:117: warning: no header providing "o2::aod::pidTOFPr" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:189:91: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:212:30: warning: no header providing "std::false_type" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:216:31: warning: no header providing "std::void_t" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:220:12: warning: no header providing "std::true_type" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:323:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:331:139: warning: no header providing "o2::aod::PVMults" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:331:153: warning: no header providing "o2::aod::FV0Mults" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:331:168: warning: no header providing "o2::aod::MultsGlobal" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:410:9: warning: no header providing "TParticlePDG" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:415:59: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGCF/TableProducer/filterCorrelations.cxx:535:19: warning: an assignment within an 'if' condition is bug-prone [bugprone-assignment-in-if-condition] ``` #### `PWGCF/Tasks/correlations.cxx` ```text PWGCF/Tasks/correlations.cxx:27:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:33:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:40:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:57:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:72:8: warning: constructor does not initialize these fields: multCutFormulaParamIndex, ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/Tasks/correlations.cxx:90:43: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:95:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:112:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:115:52: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:132:101: warning: no header providing "o2::aod::collision::CollisionFlagsRun2" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:135:163: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:146:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:154:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:154:14: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:166:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:174:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:178:69: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:183:13: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:243:12: warning: no header providing "std::fill_n" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:246:23: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:255:41: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:302:29: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:302:56: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:302:83: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:306:24: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:339:16: warning: no header providing "std::popcount" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:361:85: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:409:176: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:432:30: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:491:28: warning: no header providing "std::popcount" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:506:38: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:508:38: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:510:38: warning: no header providing "o2::constants::physics::MassPhi" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:619:28: warning: no header providing "std::is_same" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:783:34: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Tasks/correlations.cxx:795:37: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Tasks/correlations.cxx:839:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:844:32: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:920:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:969:32: warning: no header providing "o2::framework::FlexibleBinningPolicy" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:975:5: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] PWGCF/Tasks/correlations.cxx:1101:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/Tasks/correlations.cxx:1112:14: warning: no header providing "std::find" is directly included [misc-include-cleaner] ``` #### `PWGCF/Tasks/dptDptCorrelations.cxx` ```text PWGCF/Tasks/dptDptCorrelations.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:24:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:25:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:26:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:32:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:36:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:37:1: warning: included header TFolder.h is not used directly [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:43:1: warning: included header TProfile3D.h is not used directly [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:44:1: warning: included header TROOT.h is not used directly [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:45:1: warning: included header TVector2.h is not used directly [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:70:43: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:99:8: warning: constructor does not initialize these fields: ccdb, dataCE, dataCEsmall, dataCEME [cppcoreguidelines-pro-type-member-init] PWGCF/Tasks/dptDptCorrelations.cxx:103:10: warning: constructor does not initialize these fields: fhVertexZA [cppcoreguidelines-pro-type-member-init] PWGCF/Tasks/dptDptCorrelations.cxx:236:78: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:313:12: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:582:27: warning: variable 'corrs1' is not initialized [cppcoreguidelines-init-variables] PWGCF/Tasks/dptDptCorrelations.cxx:583:27: warning: variable 'corrs2' is not initialized [cppcoreguidelines-init-variables] PWGCF/Tasks/dptDptCorrelations.cxx:598:29: warning: variable 'ptavgs1' is not initialized [cppcoreguidelines-init-variables] PWGCF/Tasks/dptDptCorrelations.cxx:599:29: warning: variable 'ptavgs2' is not initialized [cppcoreguidelines-init-variables] PWGCF/Tasks/dptDptCorrelations.cxx:671:25: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:894:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:917:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:917:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:929:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:929:54: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:929:95: warning: no header providing "o2::framework::OutputObjSourceType" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:931:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:1019:19: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:1044:30: warning: loop variable has narrower type 'uint8_t' than iteration's upper bound 'uint' [bugprone-too-small-loop-variable] PWGCF/Tasks/dptDptCorrelations.cxx:1203:24: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:1222:27: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:1265:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Tasks/dptDptCorrelations.cxx:1277:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Tasks/dptDptCorrelations.cxx:1287:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Tasks/dptDptCorrelations.cxx:1340:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Tasks/dptDptCorrelations.cxx:1352:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Tasks/dptDptCorrelations.cxx:1362:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/Tasks/dptDptCorrelations.cxx:1396:70: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:1402:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:1408:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:1484:18: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:1487:30: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptCorrelations.cxx:1494:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGCF/Tasks/dptDptFilterQa.cxx` ```text PWGCF/Tasks/dptDptFilterQa.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Tasks/dptDptFilterQa.cxx:39:23: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptFilterQa.cxx:43:8: warning: constructor does not initialize these fields: datatype [cppcoreguidelines-pro-type-member-init] PWGCF/Tasks/dptDptFilterQa.cxx:44:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptFilterQa.cxx:45:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptFilterQa.cxx:45:50: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptFilterQa.cxx:54:53: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/Tasks/dptDptFilterQa.cxx:54:105: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptFilterQa.cxx:55:53: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/Tasks/dptDptFilterQa.cxx:56:53: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/Tasks/dptDptFilterQa.cxx:57:53: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/Tasks/dptDptFilterQa.cxx:58:53: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/Tasks/dptDptFilterQa.cxx:59:53: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/Tasks/dptDptFilterQa.cxx:60:53: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/Tasks/dptDptFilterQa.cxx:61:53: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/Tasks/dptDptFilterQa.cxx:62:53: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/Tasks/dptDptFilterQa.cxx:63:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptFilterQa.cxx:63:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptFilterQa.cxx:67:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptFilterQa.cxx:97:42: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptFilterQa.cxx:136:32: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/Tasks/dptDptFilterQa.cxx:144:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/Tasks/matchRecoGen.cxx` ```text PWGCF/Tasks/matchRecoGen.cxx:21:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:22:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:23:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:24:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:27:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:33:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:34:1: warning: included header TFolder.h is not used directly [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:36:1: warning: included header TH2.h is not used directly [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:37:1: warning: included header TH3.h is not used directly [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:38:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:39:1: warning: included header TParameter.h is not used directly [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:40:1: warning: included header TProfile3D.h is not used directly [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:41:1: warning: included header TROOT.h is not used directly [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:57:25: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:62:8: warning: constructor does not initialize these fields: fPDG [cppcoreguidelines-pro-type-member-init] PWGCF/Tasks/matchRecoGen.cxx:63:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:69:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:69:53: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:70:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:79:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:89:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:90:51: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:100:81: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:104:86: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:126:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:146:27: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:215:96: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:305:5: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:324:7: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:379:43: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/Tasks/matchRecoGen.cxx:403:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/Tutorial/CFTutorialTask0.cxx` ```text PWGCF/Tutorial/CFTutorialTask0.cxx:27:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask0.cxx:27:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask0.cxx:30:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask0.cxx:34:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask0.cxx:36:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask0.cxx:40:47: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask0.cxx:47:21: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask0.cxx:47:49: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask0.cxx:50:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask0.cxx:51:9: warning: no header providing "fabs" is directly included [misc-include-cleaner] ``` #### `PWGCF/Tutorial/CFTutorialTask1.cxx` ```text PWGCF/Tutorial/CFTutorialTask1.cxx:31:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask1.cxx:31:37: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask1.cxx:34:33: warning: no header providing "o2::aod::FullTracks" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask1.cxx:42:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask1.cxx:42:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask1.cxx:45:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask1.cxx:49:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask1.cxx:51:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask1.cxx:55:47: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask1.cxx:60:74: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask1.cxx:67:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask1.cxx:68:9: warning: no header providing "fabs" is directly included [misc-include-cleaner] ``` #### `PWGCF/Tutorial/CFTutorialTask2.cxx` ```text PWGCF/Tutorial/CFTutorialTask2.cxx:31:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask2.cxx:31:37: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask2.cxx:34:33: warning: no header providing "o2::aod::FullTracks" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask2.cxx:42:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask2.cxx:42:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask2.cxx:45:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask2.cxx:52:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask2.cxx:52:29: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask2.cxx:52:50: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask2.cxx:53:42: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask2.cxx:53:77: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask2.cxx:56:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask2.cxx:62:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask2.cxx:66:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask2.cxx:68:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask2.cxx:72:36: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask2.cxx:76:74: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask2.cxx:82:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask2.cxx:85:11: warning: no header providing "fabs" is directly included [misc-include-cleaner] ``` #### `PWGCF/Tutorial/CFTutorialTask3.cxx` ```text PWGCF/Tutorial/CFTutorialTask3.cxx:31:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:31:37: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:34:33: warning: no header providing "o2::aod::FullTracks" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:42:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:43:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:43:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:44:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:44:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:47:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:55:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:55:29: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:55:50: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:56:42: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:56:77: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:59:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:62:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:62:166: warning: no header providing "o2::aod::track::signed1Pt" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:66:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:70:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:72:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:76:36: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:80:76: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask3.cxx:90:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `PWGCF/Tutorial/CFTutorialTask4.cxx` ```text PWGCF/Tutorial/CFTutorialTask4.cxx:34:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:34:37: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:37:33: warning: no header providing "o2::aod::FullTracks" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:45:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:46:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:46:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:47:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:47:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:50:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:58:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:58:29: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:58:50: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:59:42: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:59:77: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:62:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:65:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:65:166: warning: no header providing "o2::aod::track::signed1Pt" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:69:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:73:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:75:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:79:36: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:83:76: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:94:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:112:29: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:112:47: warning: no header providing "o2::soa::CombinationsFullIndexPolicy" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask4.cxx:113:11: warning: no header providing "fabs" is directly included [misc-include-cleaner] ``` #### `PWGCF/Tutorial/CFTutorialTask5.cxx` ```text PWGCF/Tutorial/CFTutorialTask5.cxx:34:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:34:37: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:37:33: warning: no header providing "o2::aod::FullTracks" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:45:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:46:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:46:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:48:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:48:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:51:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:59:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:59:29: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:59:50: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:60:42: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:60:77: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:63:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:67:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:67:54: warning: no header providing "o2::aod::track::signed1Pt" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:70:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:70:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:73:23: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:73:59: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:76:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:80:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:82:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:86:36: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:90:76: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:102:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:120:29: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:120:47: warning: no header providing "o2::soa::CombinationsFullIndexPolicy" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:121:11: warning: no header providing "fabs" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:134:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:139:48: warning: no header providing "o2::soa::selfCombinations" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:164:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] PWGCF/Tutorial/CFTutorialTask5.cxx:171:31: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx` ```text PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:12:1: warning: included header regex.hpp is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:15:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:22:61: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:22:73: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:37:18: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:83:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:92:5: warning: no header providing "o2::analysis::PWGCF::SelectionFilterAndAnalysis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:144:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:147:15: warning: no header providing "o2::analysis::PWGCF::SelectionFilterAndAnalysis::kAnalysis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:148:5: warning: Call to virtual method 'EventSelectionFilterAndAnalysis::StoreArmedMask' during construction bypasses virtual dispatch [clang-analyzer-optin.cplusplus.VirtualCall] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:181:24: warning: no header providing "o2::analysis::PWGCF::CutWithVariations" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:186:11: warning: no header providing "strcmp" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:197:5: warning: no header providing "TList" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:224:45: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:291:3: warning: no header providing "boost::regex" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:291:92: warning: no header providing "boost::regex_constants::ECMAScript" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:291:122: warning: no header providing "boost::regex_constants::icase" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:293:3: warning: no header providing "boost::smatch" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:295:14: warning: no header providing "boost::regex_search" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:307:12: warning: no header providing "std::set" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:323:41: warning: no header providing "o2::analysis::PWGCF::CutBrick" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:378:17: warning: Call to virtual method 'EventSelectionFilterAndAnalysis::CalculateMaskLength' during construction bypasses virtual dispatch [clang-analyzer-optin.cplusplus.VirtualCall] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:382:70: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:385:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:388:9: warning: no header providing "SETBIT" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:409:16: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:413:18: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] ``` #### `PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h` ```text PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:17:1: warning: included header TNamed.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:39:35: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:47:35: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:73:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:79:10: warning: destructor of 'ComplexBrickHelper' is public and non-virtual [cppcoreguidelines-virtual-class-destructor] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:90:10: warning: destructor of 'MultiplicityBrick' is public and non-virtual [cppcoreguidelines-virtual-class-destructor] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:91:18: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:94:18: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:96:10: warning: destructor of 'PileUpRejBrick' is public and non-virtual [cppcoreguidelines-virtual-class-destructor] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:97:18: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:99:18: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:107:16: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:155:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:176:34: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:181:36: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:137:31: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ``` #### `PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.cxx` ```text PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.cxx:24:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.cxx:28:5: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.cxx:43:51: warning: no header providing "o2::analysis::PWGCF::EventSelectionConfigurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.cxx:43:85: warning: no header providing "o2::analysis::PWGCF::TrackSelectionConfigurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.cxx:43:119: warning: no header providing "o2::analysis::PWGCF::PIDSelectionConfigurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.cxx:43:151: warning: no header providing "o2::analysis::PWGCF::SelectionFilterAndAnalysis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.cxx:45:30: warning: no header providing "o2::analysis::PWGCF::TrackSelectionFilterAndAnalysis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.cxx:46:30: warning: no header providing "o2::analysis::PWGCF::EventSelectionFilterAndAnalysis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.cxx:47:28: warning: no header providing "o2::analysis::PWGCF::PIDSelectionFilterAndAnalysis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.cxx:63:8: warning: no header providing "std::tm" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.cxx:65:8: warning: no header providing "std::istringstream" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.cxx:71:8: warning: no header providing "std::time_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.cxx:71:28: warning: no header providing "mktime" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.cxx:73:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.cxx:79:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.cxx:81:13: warning: no header providing "o2::ccdb::BasicCCDBManager" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.h` ```text PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.h:14:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.h:19:1: warning: included header TObject.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.h:21:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.h:44:110: warning: no header providing "o2::analysis::PWGCF::SelectionFilterAndAnalysis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.h:54:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx` ```text PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:14:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:15:1: warning: included header AnalysisDataModel.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:16:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:18:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:20:1: warning: included header regex.hpp is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:34:57: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:34:69: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:57:18: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:102:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:109:5: warning: no header providing "o2::analysis::PWGCF::SelectionFilterAndAnalysis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:180:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:183:15: warning: no header providing "o2::analysis::PWGCF::SelectionFilterAndAnalysis::kAnalysis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:184:5: warning: Call to virtual method 'PIDSelectionFilterAndAnalysis::StoreArmedMask' during construction bypasses virtual dispatch [clang-analyzer-optin.cplusplus.VirtualCall] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:224:3: warning: no header providing "boost::regex" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:224:78: warning: no header providing "boost::regex_constants::ECMAScript" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:224:108: warning: no header providing "boost::regex_constants::icase" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:226:3: warning: no header providing "boost::smatch" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:228:14: warning: no header providing "boost::regex_search" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:256:14: warning: no header providing "std::set" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:261:44: warning: no header providing "o2::analysis::PWGCF::CutBrick" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:281:16: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:311:17: warning: Call to virtual method 'PIDSelectionFilterAndAnalysis::CalculateMaskLength' during construction bypasses virtual dispatch [clang-analyzer-optin.cplusplus.VirtualCall] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:316:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:326:14: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:329:13: warning: no header providing "SETBIT" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h` ```text PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:16:1: warning: included header TObject.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:17:1: warning: included header TNamed.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:18:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:51:33: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:65:33: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:97:11: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:104:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:132:15: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:133:16: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:157:12: warning: no header providing "std::vector" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Core/SelectionFilterAndAnalysis.cxx` ```text PWGCF/TwoParticleCorrelations/Core/SelectionFilterAndAnalysis.cxx:12:1: warning: included header regex.hpp is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SelectionFilterAndAnalysis.cxx:13:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SelectionFilterAndAnalysis.cxx:15:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SelectionFilterAndAnalysis.cxx:16:1: warning: included header AnalysisDataModel.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SelectionFilterAndAnalysis.cxx:17:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SelectionFilterAndAnalysis.cxx:26:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SelectionFilterAndAnalysis.cxx:30:5: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SelectionFilterAndAnalysis.cxx:63:40: warning: no header providing "u_long" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Core/SelectionFilterAndAnalysis.h` ```text PWGCF/TwoParticleCorrelations/Core/SelectionFilterAndAnalysis.h:16:1: warning: included header TObject.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SelectionFilterAndAnalysis.h:18:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SelectionFilterAndAnalysis.h:43:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SelectionFilterAndAnalysis.h:48:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx` ```text PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:29:116: warning: no header providing "std::set" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:29:125: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:75:5: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:91:1: warning: no header providing "templateClassImp" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:143:34: warning: no header providing "std::stod" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:150:6: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:854:47: warning: no header providing "strlen" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:1059:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:1096:32: warning: no header providing "o2::aod::track::Run2Track" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:1117:62: warning: no header providing "pow" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:1164:54: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:1168:22: warning: no header providing "std::count_if" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h` ```text PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:18:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:23:1: warning: included header regex is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:24:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:45:11: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:68:108: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:110:11: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:114:29: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:115:29: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:116:15: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:154:11: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:159:16: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:181:11: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:185:29: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:186:29: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:187:15: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:225:11: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:230:16: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:252:11: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:256:29: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:257:29: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:258:15: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:297:11: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:302:16: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:326:11: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:330:29: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:331:29: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:332:15: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:371:11: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:376:16: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:402:11: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:406:29: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:407:29: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:411:15: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:432:11: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:440:29: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:441:29: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:442:15: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:443:15: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:466:11: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:510:11: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:531:29: warning: 'virtual' is redundant since the function is already declared 'override' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:571:30: warning: no header providing "std::function" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:572:34: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:572:68: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:572:127: warning: no header providing "std::make_pair" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:573:104: warning: no header providing "std::make_pair" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:623:20: warning: no header providing "std::pair" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:546:29: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ``` #### `PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx` ```text PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:12:1: warning: included header regex.hpp is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:23:61: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:23:73: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:50:18: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:102:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:106:5: warning: no header providing "o2::analysis::PWGCF::SelectionFilterAndAnalysis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:120:14: warning: no header providing "o2::analysis::PWGCF::CutBrick" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:120:71: warning: no header providing "std::set" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:205:15: warning: no header providing "o2::analysis::PWGCF::SelectionFilterAndAnalysis::kAnalysis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:207:5: warning: Call to virtual method 'TrackSelectionFilterAndAnalysis::StoreArmedMask' during construction bypasses virtual dispatch [clang-analyzer-optin.cplusplus.VirtualCall] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:216:16: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:219:16: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:276:3: warning: no header providing "boost::regex" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:276:103: warning: no header providing "boost::regex_constants::ECMAScript" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:276:133: warning: no header providing "boost::regex_constants::icase" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:278:3: warning: no header providing "boost::smatch" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:280:14: warning: no header providing "boost::regex_search" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:305:27: warning: no header providing "o2::analysis::PWGCF::TrackSelectionBrick" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:345:12: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:350:12: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:355:12: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:360:12: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:365:12: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:370:12: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:375:12: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:380:12: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:399:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:408:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:411:9: warning: no header providing "SETBIT" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:424:16: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:429:16: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] ``` #### `PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h` ```text PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:17:1: warning: included header TNamed.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:20:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:39:35: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:63:35: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:104:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:108:7: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:109:8: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:142:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:162:22: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:165:21: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] ``` #### `PWGCF/TwoParticleCorrelations/DataModel/LongRangeDerived.h` ```text PWGCF/TwoParticleCorrelations/DataModel/LongRangeDerived.h:34:38: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/DataModel/LongRangeDerived.h:85:34: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/DataModel/TwoParticleCorrelationsFiltered.h` ```text PWGCF/TwoParticleCorrelations/DataModel/TwoParticleCorrelationsFiltered.h:16:1: warning: included header TwoParticleCorrelationsSkimmed.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/DataModel/TwoParticleCorrelationsFiltered.h:25:53: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/DataModel/TwoParticleCorrelationsSkimmed.h` ```text PWGCF/TwoParticleCorrelations/DataModel/TwoParticleCorrelationsSkimmed.h:16:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/DataModel/TwoParticleCorrelationsSkimmed.h:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/DataModel/TwoParticleCorrelationsSkimmed.h:20:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/DataModel/TwoParticleCorrelationsSkimmed.h:21:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/DataModel/TwoParticleCorrelationsSkimmed.h:22:1: warning: included header SkimmingConfigurableCuts.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/DataModel/TwoParticleCorrelationsSkimmed.h:23:1: warning: included header EventSelectionFilterAndAnalysis.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/DataModel/TwoParticleCorrelationsSkimmed.h:24:1: warning: included header TrackSelectionFilterAndAnalysis.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/DataModel/TwoParticleCorrelationsSkimmed.h:25:1: warning: included header PIDSelectionFilterAndAnalysis.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/DataModel/TwoParticleCorrelationsSkimmed.h:26:1: warning: included header runDataProcessing.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/DataModel/TwoParticleCorrelationsSkimmed.h:36:48: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/DataModel/TwoParticleCorrelationsSkimmed.h:72:49: warning: no header providing "int8_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/TableProducer/Productions/skimmingconf_20221115.h` ```text PWGCF/TwoParticleCorrelations/TableProducer/Productions/skimmingconf_20221115.h:12:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/Productions/skimmingconf_20221115.h:13:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/Productions/skimmingconf_20221115.h:18:25: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/Productions/skimmingconf_20221115.h:19:18: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx` ```text PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:19:1: warning: included header PairCuts.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:29:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:31:1: warning: included header CollisionAssociationTables.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:33:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:42:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:46:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:53:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:55:1: warning: included header TComplex.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:56:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:57:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:58:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:77:1: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:90:8: warning: constructor does not initialize these fields: ccdb, pdg, offsetFT0 [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:92:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:93:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:94:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:171:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:176:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:187:3: warning: no header providing "SGCutParHolder" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:191:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:203:42: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:218:56: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:236:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:317:23: warning: no header providing "o2::math_utils::bringTo02Pi" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:323:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:387:31: warning: no header providing "udhelpers::compatibleBCs" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:394:24: warning: no header providing "udhelpers::rPVtrwTOF" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:399:18: warning: no header providing "udhelpers::getFITinfo" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:506:72: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:510:73: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:514:77: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:518:80: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:522:80: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:526:81: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:534:90: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:538:84: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:542:88: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:590:10: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:596:10: warning: variable 'isPion' is not initialized [cppcoreguidelines-init-variables] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:596:18: warning: variable 'isKaon' is not initialized [cppcoreguidelines-init-variables] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:596:26: warning: variable 'isProton' is not initialized [cppcoreguidelines-init-variables] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:634:20: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:650:19: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:651:23: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:652:18: warning: no header providing "std::log" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:652:27: warning: no header providing "std::tan" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:766:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx` ```text PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:19:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:20:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:21:1: warning: included header TFolder.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:22:1: warning: included header TH1.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:23:1: warning: included header TH2.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:24:1: warning: included header TH3.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:25:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:26:1: warning: included header TParameter.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:27:1: warning: included header TProfile3D.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:28:1: warning: included header TROOT.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:44:1: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:61:8: warning: constructor does not initialize these fields: nReportedTracks [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:62:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:72:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:79:12: warning: no header providing "o2::analysis::PWGCF::EventSelectionConfigurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:81:12: warning: no header providing "o2::analysis::PWGCF::TrackSelectionConfigurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:88:12: warning: no header providing "o2::analysis::PWGCF::PIDSelectionConfigurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:92:73: warning: no header providing "o2::analysis::PWGCF::SelectionFilterAndAnalysis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:117:25: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:117:35: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:118:35: warning: no header providing "o2::aod::FullTracks" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:132:68: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFiltering.cxx:147:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx` ```text PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:22:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:54:30: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:54:41: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:59:27: warning: no header providing "o2::aod::run2::kTRDHEE" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:81:18: warning: no header providing "o2::aod::run2::kINELgtZERO" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:86:46: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:91:9: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:98:8: warning: constructor does not initialize these fields: ccdb, nReportedTracks [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:100:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:106:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:113:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:115:46: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:130:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:137:12: warning: no header providing "o2::analysis::PWGCF::EventSelectionConfigurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:139:12: warning: no header providing "o2::analysis::PWGCF::TrackSelectionConfigurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:146:12: warning: no header providing "o2::analysis::PWGCF::PIDSelectionConfigurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:151:73: warning: no header providing "o2::analysis::PWGCF::SelectionFilterAndAnalysis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:160:45: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:161:42: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:180:29: warning: no header providing "o2::aod::run2::kIncompleteDAQ" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:185:29: warning: no header providing "o2::aod::run2::kPileupInMultBins" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:186:29: warning: no header providing "o2::aod::run2::kTrackletsVsClusters" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:187:29: warning: no header providing "o2::aod::run2::kPileUpMV" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:188:29: warning: no header providing "o2::aod::run2::kTimeRangeCut" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:189:29: warning: no header providing "o2::aod::run2::kTPCPileUp" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:190:28: warning: no header providing "o2::aod::run2::kIsPileupFromSPD" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:191:28: warning: no header providing "o2::aod::run2::kIsV0PFPileup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:195:28: warning: no header providing "o2::aod::run2::kIsTPCHVdip" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:196:28: warning: no header providing "o2::aod::run2::kIsTPCLaserWarmUp" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:200:29: warning: no header providing "o2::aod::run2::kNonZeroNContribs" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:201:32: warning: no header providing "o2::aod::collision::Run2VertexerZ" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsFullSkimming.cxx:254:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx` ```text PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:22:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:54:30: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:54:41: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:59:27: warning: no header providing "o2::aod::run2::kTRDHEE" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:81:18: warning: no header providing "o2::aod::run2::kINELgtZERO" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:86:46: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:91:9: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:98:8: warning: constructor does not initialize these fields: ccdb, nReportedTracks [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:100:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:103:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:110:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:112:46: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:127:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:134:12: warning: no header providing "o2::analysis::PWGCF::EventSelectionConfigurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:136:12: warning: no header providing "o2::analysis::PWGCF::TrackSelectionConfigurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:143:12: warning: no header providing "o2::analysis::PWGCF::PIDSelectionConfigurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:148:73: warning: no header providing "o2::analysis::PWGCF::SelectionFilterAndAnalysis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:157:45: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:158:42: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:177:29: warning: no header providing "o2::aod::run2::kIncompleteDAQ" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:182:29: warning: no header providing "o2::aod::run2::kPileupInMultBins" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:183:29: warning: no header providing "o2::aod::run2::kTrackletsVsClusters" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:184:29: warning: no header providing "o2::aod::run2::kPileUpMV" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:185:29: warning: no header providing "o2::aod::run2::kTimeRangeCut" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:186:29: warning: no header providing "o2::aod::run2::kTPCPileUp" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:187:28: warning: no header providing "o2::aod::run2::kIsPileupFromSPD" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:188:28: warning: no header providing "o2::aod::run2::kIsV0PFPileup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:192:28: warning: no header providing "o2::aod::run2::kIsTPCHVdip" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:193:28: warning: no header providing "o2::aod::run2::kIsTPCLaserWarmUp" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:197:29: warning: no header providing "o2::aod::run2::kNonZeroNContribs" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:198:32: warning: no header providing "o2::aod::collision::Run2VertexerZ" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsNotStoredSkimming.cxx:228:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsRegisterSkimming.cxx` ```text PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsRegisterSkimming.cxx:14:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsRegisterSkimming.cxx:18:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsRegisterSkimming.cxx:37:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsRegisterSkimming.cxx:43:12: warning: no header providing "o2::analysis::PWGCF::EventSelectionConfigurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsRegisterSkimming.cxx:45:12: warning: no header providing "o2::analysis::PWGCF::TrackSelectionConfigurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsRegisterSkimming.cxx:52:12: warning: no header providing "o2::analysis::PWGCF::PIDSelectionConfigurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/TableProducer/twoParticleCorrelationsRegisterSkimming.cxx:57:73: warning: no header providing "o2::analysis::PWGCF::SelectionFilterAndAnalysis" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx` ```text PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:23:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:26:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:31:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:33:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:34:1: warning: included header CorrelationsDerived.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:35:1: warning: included header CollisionAssociationTables.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:37:1: warning: included header PairCuts.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:38:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:56:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:58:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:59:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:82:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:85:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:101:200: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:104:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:104:40: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:112:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:118:29: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:118:56: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:118:83: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:124:49: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:137:17: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:176:24: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:229:60: warning: no header providing "std::asin" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:270:48: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:279:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:280:13: warning: Variable 'rad' with floating point type 'double' should not be used as a loop counter [clang-analyzer-security.FloatLoopCounter] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:332:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:344:26: warning: no header providing "o2::framework::FlexibleBinningPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:351:7: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx` ```text PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:18:1: warning: included header PairCuts.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:19:1: warning: included header CorrelationsDerived.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:20:1: warning: included header GFW.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:21:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:22:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:23:1: warning: included header GFWWeights.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:27:1: warning: included header CollisionAssociationTables.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:34:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:35:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:39:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:56:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:58:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:59:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:105:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:138:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:139:58: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:156:200: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:175:3: warning: no header providing "TH3D" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:180:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:202:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:207:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:212:29: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:212:56: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:212:83: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:219:71: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:344:24: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:362:11: warning: variable 'cent' is not initialized [cppcoreguidelines-init-variables] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:413:9: warning: no header providing "TFile" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:414:23: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:496:60: warning: no header providing "std::asin" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:569:13: warning: Variable 'rad' with floating point type 'double' should not be used as a loop counter [clang-analyzer-security.FloatLoopCounter] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:598:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:672:13: warning: Variable 'rad' with floating point type 'double' should not be used as a loop counter [clang-analyzer-security.FloatLoopCounter] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:743:80: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:750:81: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:755:80: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:760:80: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:767:88: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:773:81: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:780:82: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:786:86: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:843:18: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:857:29: warning: no header providing "std::upper_bound" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:861:50: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:915:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:927:26: warning: no header providing "o2::framework::FlexibleBinningPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:932:5: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx` ```text PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:22:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:27:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:31:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:36:1: warning: included header MatrixFunctions.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:37:1: warning: included header SMatrix.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:38:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:44:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:94:56: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:123:3: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:131:19: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:137:31: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:141:19: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:217:13: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:222:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:246:128: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:247:144: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:258:167: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:292:38: warning: no header providing "TH2F" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:663:82: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:902:56: warning: no header providing "o2::framework::kTProfile2D" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:992:8: warning: constructor does not initialize these fields: qaDataCE, qaExtraDataCE, pidDataCE, pidExtraDataCE [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:1006:52: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:1043:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:1050:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:1088:19: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:1113:30: warning: loop variable has narrower type 'uint8_t' than iteration's upper bound 'uint' [bugprone-too-small-loop-variable] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:1175:19: warning: unused local variable 'recogen' of type 'std::string' (aka 'basic_string') [bugprone-unused-local-non-trivial-variable] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:1308:70: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:1317:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:1427:8: warning: constructor does not initialize these fields: mRunNumber [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:1429:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:1431:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:1467:40: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:1467:64: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:1469:64: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] ``` #### `PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunExtraQc.cxx` ```text PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunExtraQc.cxx:17:1: warning: included header dptDptFilter.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunExtraQc.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunExtraQc.cxx:25:1: warning: included header array is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunExtraQc.cxx:38:25: warning: no header providing "TProfile3D" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunExtraQc.cxx:44:3: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunExtraQc.cxx:46:60: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunExtraQc.cxx:57:173: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunExtraQc.cxx:63:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunExtraQc.cxx:80:76: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunExtraQc.cxx:81:70: warning: no header providing "int8_t" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx` ```text PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:17:1: warning: included header dptDptFilter.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:22:1: warning: included header NoiseMap.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:25:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:30:1: warning: included header ChipMappingITS.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:32:1: warning: included header array is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:47:14: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:47:57: warning: no header providing "o2::constants::lhc::LHCMaxBunches" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:48:25: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:49:41: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:57:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:59:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:65:55: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:67:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:80:7: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:83:13: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:84:52: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:84:132: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:89:7: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:96:62: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:96:154: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:109:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx:116:48: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx` ```text PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:18:1: warning: included header PairCuts.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:19:1: warning: included header CorrelationsDerived.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:20:1: warning: included header GFW.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:21:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:22:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:23:1: warning: included header GFWWeights.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:27:1: warning: included header CollisionAssociationTables.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:34:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:35:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:39:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:56:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:58:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:59:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:105:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:138:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:139:58: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:156:200: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:175:3: warning: no header providing "TH3D" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:180:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:202:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:207:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:212:29: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:212:56: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:212:83: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:219:71: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:344:24: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:362:11: warning: variable 'cent' is not initialized [cppcoreguidelines-init-variables] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:413:9: warning: no header providing "TFile" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:414:23: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:496:60: warning: no header providing "std::asin" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:569:13: warning: Variable 'rad' with floating point type 'double' should not be used as a loop counter [clang-analyzer-security.FloatLoopCounter] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:598:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:672:13: warning: Variable 'rad' with floating point type 'double' should not be used as a loop counter [clang-analyzer-security.FloatLoopCounter] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:743:80: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:750:81: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:755:80: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:760:80: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:767:88: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:773:81: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:780:82: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:786:86: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:843:18: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:857:29: warning: no header providing "std::upper_bound" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:861:50: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:915:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:927:26: warning: no header providing "o2::framework::FlexibleBinningPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:932:5: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx` ```text PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:18:1: warning: included header PairCuts.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:19:1: warning: included header CorrelationsDerived.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:20:1: warning: included header GFW.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:21:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:22:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:23:1: warning: included header GFWWeights.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:27:1: warning: included header CollisionAssociationTables.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:29:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:37:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:38:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:41:1: warning: included header Geometry.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:42:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:46:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:50:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:55:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:65:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:69:8: warning: constructor does not initialize these fields: ccdb, offsetFT0, tofNsigmaCut, itsNsigmaCut, tpcNsigmaCut [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:70:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:110:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:144:18: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:149:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:150:58: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:171:3: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:175:211: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:181:20: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:186:3: warning: no header providing "TH3D" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:191:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:239:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:243:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:254:29: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:254:56: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:254:83: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:261:27: warning: Assigned value is garbage or undefined [clang-analyzer-core.uninitialized.Assign] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:262:29: warning: Assigned value is garbage or undefined [clang-analyzer-core.uninitialized.Assign] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:283:71: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:437:19: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:438:23: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:439:18: warning: no header providing "std::log" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:439:27: warning: no header providing "std::tan" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:445:11: warning: variable 'cent' is not initialized [cppcoreguidelines-init-variables] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:564:9: warning: no header providing "TFile" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:565:23: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:632:42: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:774:80: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:781:81: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:786:80: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:791:80: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:798:88: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:804:81: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:811:82: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:817:86: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:908:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:920:26: warning: no header providing "o2::framework::FlexibleBinningPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:925:5: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx` ```text PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:27:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:45:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:48:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:48:67: warning: no header providing "o2::soa::Index" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:51:35: warning: no header providing "o2::aod::collision::PosX" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:52:35: warning: no header providing "o2::aod::collision::PosY" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:53:35: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:62:41: warning: no header providing "o2::aod::mccollision::PosX" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:63:41: warning: no header providing "o2::aod::mccollision::PosY" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:64:41: warning: no header providing "o2::aod::mccollision::PosZ" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:69:1: warning: no header providing "DECLARE_SOA_INDEX_COLUMN" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:81:44: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:85:36: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:130:40: warning: no header providing "o2::aod::mcparticle::Px" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:131:40: warning: no header providing "o2::aod::mcparticle::Py" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:132:40: warning: no header providing "o2::aod::mcparticle::Pz" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:241:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:243:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:249:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:323:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:326:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:326:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:342:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:349:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:360:38: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:380:65: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:385:77: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:454:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:454:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:510:39: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:522:58: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:526:53: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:530:58: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:534:54: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:538:57: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:542:57: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:546:60: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:793:50: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:811:39: warning: no header providing "kLambda0" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:830:37: warning: no header providing "kProton" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:830:72: warning: no header providing "kPiMinus" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:834:38: warning: no header providing "kLambda0Bar" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:835:37: warning: no header providing "kPiPlus" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:835:72: warning: no header providing "kProtonBar" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:854:42: warning: no header providing "TList" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:868:7: warning: no header providing "TObject" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:868:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:868:72: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:869:7: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:869:23: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:887:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:888:23: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:917:27: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1254:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1255:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1255:17: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1257:41: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1259:33: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1259:46: warning: no header providing "o2::aod::TrackSelection" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1259:67: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1259:85: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1261:43: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1270:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1279:57: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1279:109: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1304:27: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1348:35: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1351:54: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1355:65: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1500:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1500:44: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1521:41: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1527:91: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1559:29: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1583:5: warning: uninitialized record type: 'v1' [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1583:5: warning: uninitialized record type: 'v2' [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1621:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1717:86: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaR2Correlation.cxx:1815:17: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx` ```text PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:29:1: warning: included header GroupedCombinations.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:46:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:48:42: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:51:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:51:67: warning: no header providing "o2::soa::Index" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:54:35: warning: no header providing "o2::aod::collision::PosX" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:55:35: warning: no header providing "o2::aod::collision::PosY" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:56:35: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:68:41: warning: no header providing "o2::aod::mccollision::PosX" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:69:41: warning: no header providing "o2::aod::mccollision::PosY" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:70:41: warning: no header providing "o2::aod::mccollision::PosZ" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:75:1: warning: no header providing "DECLARE_SOA_INDEX_COLUMN" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:87:44: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:91:36: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:136:40: warning: no header providing "o2::aod::mcparticle::Px" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:137:40: warning: no header providing "o2::aod::mcparticle::Py" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:138:40: warning: no header providing "o2::aod::mcparticle::Pz" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:284:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:286:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:292:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:366:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:369:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:369:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:385:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:392:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:403:38: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:423:65: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:428:77: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:497:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:497:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:553:39: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:565:58: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:569:53: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:573:58: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:577:54: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:581:57: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:585:57: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:589:60: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:836:50: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:854:39: warning: no header providing "kLambda0" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:873:37: warning: no header providing "kProton" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:873:72: warning: no header providing "kPiMinus" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:877:38: warning: no header providing "kLambda0Bar" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:878:37: warning: no header providing "kPiPlus" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:878:72: warning: no header providing "kProtonBar" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:897:42: warning: no header providing "TList" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:911:7: warning: no header providing "TObject" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:911:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:911:72: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:912:7: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:912:23: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:930:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:931:23: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:960:27: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1297:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1298:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1298:17: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1300:41: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1302:33: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1302:46: warning: no header providing "o2::aod::TrackSelection" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1302:67: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1302:85: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1304:43: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1308:72: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1314:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1347:27: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1348:27: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1348:70: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1392:35: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1395:54: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1399:65: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1549:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1549:44: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1576:41: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1588:91: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1617:29: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1642:5: warning: uninitialized record type: 'v1' [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1642:5: warning: uninitialized record type: 'v2' [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1698:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1730:24: warning: no header providing "o2::framework::FlexibleBinningPolicy" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx` ```text PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:18:1: warning: included header PairCuts.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:19:1: warning: included header CorrelationsDerived.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:20:1: warning: included header GFW.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:21:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:22:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:23:1: warning: included header GFWWeights.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:27:1: warning: included header CollisionAssociationTables.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:29:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:37:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:38:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:41:1: warning: included header Geometry.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:42:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:46:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:50:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:55:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:65:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:69:8: warning: constructor does not initialize these fields: ccdb, offsetFT0, tofNsigmaCut, itsNsigmaCut, tpcNsigmaCut [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:70:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:116:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:150:18: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:155:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:156:58: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:177:3: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:181:211: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:187:20: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:192:3: warning: no header providing "TH3D" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:197:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:268:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:272:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:283:29: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:283:56: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:283:83: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:290:27: warning: Assigned value is garbage or undefined [clang-analyzer-core.uninitialized.Assign] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:291:29: warning: Assigned value is garbage or undefined [clang-analyzer-core.uninitialized.Assign] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:312:71: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:468:19: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:469:23: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:470:18: warning: no header providing "std::log" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:470:27: warning: no header providing "std::tan" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:476:11: warning: variable 'cent' is not initialized [cppcoreguidelines-init-variables] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:595:9: warning: no header providing "TFile" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:596:23: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:665:42: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:842:80: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:849:81: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:854:80: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:859:80: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:866:88: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:872:81: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:879:82: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:885:86: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:976:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:988:26: warning: no header providing "o2::framework::FlexibleBinningPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:993:5: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx` ```text PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:19:1: warning: included header PairCuts.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:20:1: warning: included header CorrelationsDerived.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:24:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:25:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:27:1: warning: included header CollisionAssociationTables.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:29:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:30:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:39:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:42:1: warning: included header Geometry.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:48:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:51:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:53:1: warning: included header TComplex.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:54:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:55:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:56:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:102:23: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:111:1: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:113:8: warning: constructor does not initialize these fields: ccdb, pdg, offsetFT0 [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:115:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:116:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:117:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:121:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:126:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:151:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:153:52: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:184:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:196:3: warning: no header providing "TH3D" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:209:16: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:209:54: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:209:82: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:209:95: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:210:62: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:210:90: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:210:103: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:211:57: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:211:85: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:212:57: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:212:85: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:213:56: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:213:84: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:214:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:214:86: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:214:99: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:215:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:215:86: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:216:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:216:86: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:217:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:217:86: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:218:63: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:218:91: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:219:66: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:219:94: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:222:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:252:44: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:300:62: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:307:73: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:307:97: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:309:104: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:320:20: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:336:19: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:337:23: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:338:18: warning: no header providing "std::log" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:338:27: warning: no header providing "std::tan" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:347:70: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:350:70: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:406:26: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:472:10: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:480:10: warning: variable 'isPion' is not initialized [cppcoreguidelines-init-variables] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:480:18: warning: variable 'isKaon' is not initialized [cppcoreguidelines-init-variables] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:480:26: warning: variable 'isProton' is not initialized [cppcoreguidelines-init-variables] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:522:24: warning: no header providing "gRandom" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:626:25: warning: no header providing "o2::math_utils::bringTo02Pi" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:865:26: warning: no header providing "o2::framework::FlexibleBinningPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:938:5: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:1101:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx` ```text PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:19:1: warning: included header PairCuts.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:20:1: warning: included header CorrelationsDerived.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:22:1: warning: included header bestCollisionTable.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:26:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:27:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:28:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:29:1: warning: included header CollisionAssociationTables.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:30:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:31:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:32:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:33:1: warning: included header PIDResponseITS.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:34:1: warning: included header PIDResponseTOF.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:35:1: warning: included header PIDResponseTPC.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:36:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:38:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:39:1: warning: included header CcdbApi.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:41:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:42:1: warning: included header AlignParam.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:43:1: warning: included header Geometry.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:44:1: warning: included header Geometry.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:45:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:49:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:50:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:51:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:53:1: warning: included header PID.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:54:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:56:1: warning: included header TComplex.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:57:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:58:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:59:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:61:1: warning: included header chrono is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:64:1: warning: included header memory is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:82:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:83:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:98:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:98:58: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:117:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:150:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:152:17: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:166:50: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:170:40: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:176:50: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:179:42: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:262:65: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:339:26: warning: no header providing "o2::framework::FlexibleBinningPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:344:5: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx:573:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx` ```text PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:20:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:41:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:41:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:43:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:72:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:72:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:74:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:74:26: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:74:47: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:76:33: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:78:34: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:78:44: warning: no header providing "o2::aod::Timestamps" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:78:74: warning: no header providing "o2::aod::Run3MatchedToBCSparse" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:80:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:83:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:105:5: warning: no header providing "o2::framework::HistogramConfigSpec" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:105:49: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:115:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:116:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:116:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:138:65: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:167:52: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:199:47: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:208:47: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:217:47: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:235:27: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:236:10: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:295:25: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:295:49: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:295:172: warning: no header providing "o2::aod::Zdcs" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:388:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:390:79: warning: no header providing "o2::aod::Run2MatchedSparse" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:390:150: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx:393:30: warning: no header providing "kINT7" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx` ```text PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:18:1: warning: included header PairCuts.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:19:1: warning: included header CorrelationsDerived.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:20:1: warning: included header EPCalibrationTables.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:25:1: warning: included header CollisionAssociationTables.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:35:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:36:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:40:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:44:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:59:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:62:17: warning: no header providing "o2::framework::Array2D" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:76:8: warning: constructor does not initialize these fields: ccdb, eventCuts, resoCutVals, resoSwitchVals, tofNsigmaCut, itsNsigmaCut, tpcNsigmaCut [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:78:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:123:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:159:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:160:58: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:175:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:186:206: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:197:3: warning: no header providing "TH3D" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:202:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:297:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:307:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:334:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:346:29: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:346:56: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:346:83: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:362:62: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:471:54: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:566:24: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:584:11: warning: variable 'cent' is not initialized [cppcoreguidelines-init-variables] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:653:10: warning: variable 'isPion' is not initialized [cppcoreguidelines-init-variables] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:653:18: warning: variable 'isKaon' is not initialized [cppcoreguidelines-init-variables] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:653:26: warning: variable 'isProton' is not initialized [cppcoreguidelines-init-variables] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:698:9: warning: no header providing "TFile" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:699:23: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:771:42: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:773:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:799:60: warning: no header providing "std::asin" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:903:13: warning: Variable 'rad' with floating point type 'double' should not be used as a loop counter [clang-analyzer-security.FloatLoopCounter] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:1005:13: warning: Variable 'rad' with floating point type 'double' should not be used as a loop counter [clang-analyzer-security.FloatLoopCounter] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:1040:91: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:1046:92: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:1052:91: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:1060:93: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:1068:103: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:1075:94: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:1083:97: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:1090:101: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:1142:90: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:1147:65: warning: no header providing "kTVXinTRD" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:1187:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:1199:26: warning: no header providing "o2::framework::FlexibleBinningPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:1204:5: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:1390:47: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:1391:47: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:1392:48: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx` ```text PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:17:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:31:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:31:42: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:33:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:36:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:36:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:56:15: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:72:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:72:39: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:73:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:75:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:76:53: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:88:49: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:109:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:110:25: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:110:35: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:110:153: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:112:12: warning: variable 'etabin' is not initialized [cppcoreguidelines-init-variables] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:112:20: warning: variable 'phibin' is not initialized [cppcoreguidelines-init-variables] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:112:28: warning: variable 'binNpid' is not initialized [cppcoreguidelines-init-variables] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:115:57: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:123:31: warning: no header providing "fabs" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:134:9: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:136:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:161:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:163:185: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:163:224: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:165:12: warning: variable 'etabin' is not initialized [cppcoreguidelines-init-variables] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:165:20: warning: variable 'phibin' is not initialized [cppcoreguidelines-init-variables] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:165:28: warning: variable 'binNpid' is not initialized [cppcoreguidelines-init-variables] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:187:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:195:19: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:219:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:243:7: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:259:8: warning: constructor does not initialize these fields: mult1, mult2, etabin1, phibin1, etabin2, phibin2, sign1, sign2, iftrack2 [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:272:21: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:273:21: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:277:3: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:283:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:286:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:287:29: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:287:50: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:288:33: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:292:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:292:18: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:292:118: warning: no header providing "o2::framework::expressions::ifnode" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:307:49: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:308:63: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:375:45: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/r2p2-4-id.cxx:377:59: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx` ```text PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:24:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:28:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:43:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:81:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:87:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:90:52: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:98:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:100:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:104:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:108:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:111:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:125:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:170:23: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:181:77: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:184:78: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:187:77: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:190:77: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:193:85: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:357:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:386:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx` ```text PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:21:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:22:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:23:1: warning: included header TFolder.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:29:1: warning: included header TProfile3D.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:30:1: warning: included header TROOT.h is not used directly [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:48:1: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:82:32: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:108:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:111:10: warning: constructor does not initialize these fields: fhVertexZA [cppcoreguidelines-pro-type-member-init] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:241:74: warning: casting (double + 0.5) to integer leads to incorrect rounding; consider using lround (#include ) instead [bugprone-incorrect-roundings] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:298:12: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:406:7: warning: no header providing "Bool_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:407:25: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:586:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:586:21: warning: no header providing "o2::ccdb::BasicCCDBManager" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:603:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:603:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:614:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:620:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:620:54: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:620:95: warning: no header providing "o2::framework::OutputObjSourceType" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:622:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:662:43: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:666:43: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:683:7: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:733:12: warning: no header providing "o2::analysis::PWGCF::EventSelectionConfigurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:735:12: warning: no header providing "o2::analysis::PWGCF::TrackSelectionConfigurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:742:12: warning: no header providing "o2::analysis::PWGCF::PIDSelectionConfigurable" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:746:73: warning: no header providing "o2::analysis::PWGCF::SelectionFilterAndAnalysis" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:787:10: warning: no header providing "std::tm" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:788:10: warning: no header providing "std::stringstream" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:789:16: warning: no header providing "std::get_time" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:791:31: warning: no header providing "std::mktime" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:835:23: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:878:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:878:38: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:878:124: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:880:25: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:880:35: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:881:25: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:881:49: warning: no header providing "o2::aod::FullTracks" is directly included [misc-include-cleaner] PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:885:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` ### PWGDQ #### `PWGDQ/Core/AnalysisCompositeCut.cxx` ```text PWGDQ/Core/AnalysisCompositeCut.cxx:14:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGDQ/Core/AnalysisCompositeCut.cxx:17:61: warning: no header providing "AnalysisCut" is directly included [misc-include-cleaner] PWGDQ/Core/AnalysisCompositeCut.cxx:75:13: warning: no header providing "std::vector" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Core/AnalysisCompositeCut.h` ```text PWGDQ/Core/AnalysisCompositeCut.h:27:38: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/Core/AnalysisCompositeCut.h:36:36: warning: do not use C-style cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-cstyle-cast] PWGDQ/Core/AnalysisCompositeCut.h:52:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Core/AnalysisCut.cxx` ```text PWGDQ/Core/AnalysisCut.cxx:20:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGDQ/Core/AnalysisCut.cxx:25:65: warning: no header providing "TNamed" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Core/AnalysisCut.h` ```text PWGDQ/Core/AnalysisCut.h:24:28: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGDQ/Core/AnalysisCut.h:70:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] PWGDQ/Core/AnalysisCut.h:155:11: warning: variable 'cutLow' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/AnalysisCut.h:155:19: warning: variable 'cutHigh' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGDQ/Core/CutsLibrary.cxx` ```text PWGDQ/Core/CutsLibrary.cxx:24:1: warning: included header set is not used directly [misc-include-cleaner] PWGDQ/Core/CutsLibrary.cxx:28:12: warning: using decl 'cout' is unused [misc-unused-using-decls] PWGDQ/Core/CutsLibrary.cxx:29:12: warning: using decl 'endl' is unused [misc-unused-using-decls] PWGDQ/Core/CutsLibrary.cxx:61:5: warning: no header providing "AnalysisCut" is directly included [misc-include-cleaner] PWGDQ/Core/CutsLibrary.cxx:1179:26: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGDQ/Core/CutsLibrary.cxx:1702:15: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGDQ/Core/CutsLibrary.cxx:1715:8: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGDQ/Core/CutsLibrary.cxx:3799:3: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGDQ/Core/CutsLibrary.cxx:6969:3: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGDQ/Core/CutsLibrary.cxx:6976:14: warning: no header providing "rapidjson::Document" is directly included [misc-include-cleaner] PWGDQ/Core/CutsLibrary.cxx:6979:14: warning: no header providing "rapidjson::ParseResult" is directly included [misc-include-cleaner] PWGDQ/Core/CutsLibrary.cxx:6981:54: warning: no header providing "rapidjson::GetParseErrorFunc" is directly included [misc-include-cleaner] PWGDQ/Core/CutsLibrary.cxx:6986:19: warning: no header providing "rapidjson::Value" is directly included [misc-include-cleaner] PWGDQ/Core/CutsLibrary.cxx:7418:22: warning: no header providing "std::pair" is directly included [misc-include-cleaner] PWGDQ/Core/CutsLibrary.cxx:7512:10: warning: no header providing "std::iota" is directly included [misc-include-cleaner] PWGDQ/Core/CutsLibrary.cxx:7547:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGDQ/Core/CutsLibrary.cxx:7559:18: warning: no header providing "o2::framework::Array2D" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Core/CutsLibrary.h` ```text PWGDQ/Core/CutsLibrary.h:20:1: warning: included header VarManager.h is not used directly [misc-include-cleaner] PWGDQ/Core/CutsLibrary.h:101:1: warning: included header document.h is not used directly [misc-include-cleaner] PWGDQ/Core/CutsLibrary.h:128:20: warning: no header providing "std::pair" is directly included [misc-include-cleaner] PWGDQ/Core/CutsLibrary.h:132:18: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGDQ/Core/CutsLibrary.h:147:29: warning: no header providing "std::variant" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Core/DQMlResponse.h` ```text PWGDQ/Core/DQMlResponse.h:24:1: warning: included header unordered_map is not used directly [misc-include-cleaner] PWGDQ/Core/DQMlResponse.h:30:28: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGDQ/Core/DQMlResponse.h:102:43: warning: no header providing "std::pair" is directly included [misc-include-cleaner] PWGDQ/Core/DQMlResponse.h:124:9: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGDQ/Core/DQMlResponse.h:129:38: error: use of undeclared identifier 'VarManager' [clang-diagnostic-error] PWGDQ/Core/DQMlResponse.h:131:38: error: use of undeclared identifier 'VarManager' [clang-diagnostic-error] PWGDQ/Core/DQMlResponse.h:133:38: error: use of undeclared identifier 'VarManager' [clang-diagnostic-error] PWGDQ/Core/DQMlResponse.h:135:38: error: use of undeclared identifier 'VarManager' [clang-diagnostic-error] ``` #### `PWGDQ/Core/HistogramManager.cxx` ```text PWGDQ/Core/HistogramManager.cxx:16:1: warning: included header fstream is not used directly [misc-include-cleaner] PWGDQ/Core/HistogramManager.cxx:19:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGDQ/Core/HistogramManager.cxx:26:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGDQ/Core/HistogramManager.cxx:27:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGDQ/Core/HistogramManager.cxx:28:1: warning: included header TH3F.h is not used directly [misc-include-cleaner] PWGDQ/Core/HistogramManager.cxx:37:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramManager.cxx:40:40: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramManager.cxx:61:120: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramManager.cxx:70:23: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramManager.cxx:76:24: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramManager.cxx:135:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:193:3: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGDQ/Core/HistogramManager.cxx:196:17: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramManager.cxx:204:33: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramManager.cxx:225:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:229:19: warning: no header providing "TH2F" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramManager.cxx:272:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:279:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:284:19: warning: no header providing "TH3F" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramManager.cxx:344:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:402:3: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGDQ/Core/HistogramManager.cxx:431:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:478:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:485:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:547:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:586:3: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramManager.cxx:587:3: warning: no header providing "THnBase" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramManager.cxx:622:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:624:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:628:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:630:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:639:65: warning: no header providing "TArrayD" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramManager.cxx:647:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:729:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:731:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:735:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:737:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:744:61: warning: no header providing "Float_t" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramManager.cxx:751:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:762:3: warning: no header providing "TIter" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramManager.cxx:765:8: warning: variable 'isProfile' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/HistogramManager.cxx:766:8: warning: variable 'isTHn' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/HistogramManager.cxx:785:20: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:808:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:810:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:814:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:816:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:822:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:824:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:828:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:830:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:838:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:840:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:845:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:847:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:851:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:853:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:861:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:863:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:867:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:869:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:881:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:883:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:887:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:889:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/HistogramManager.cxx:913:30: warning: no header providing "Option_t" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramManager.cxx:921:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `PWGDQ/Core/HistogramManager.h` ```text PWGDQ/Core/HistogramManager.h:22:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGDQ/Core/HistogramManager.h:81:82: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramManager.h:95:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramManager.h:96:14: warning: no header providing "Option_t" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramManager.h:116:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Core/HistogramsLibrary.cxx` ```text PWGDQ/Core/HistogramsLibrary.cxx:23:46: warning: no header providing "HistogramManager" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramsLibrary.cxx:32:3: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramsLibrary.cxx:217:147: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramsLibrary.cxx:259:107: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramsLibrary.cxx:341:83: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramsLibrary.cxx:646:7: warning: no header providing "TArrayD" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramsLibrary.cxx:956:111: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramsLibrary.cxx:990:43: warning: no header providing "TMath::Power" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramsLibrary.cxx:2109:5: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramsLibrary.cxx:2302:14: warning: no header providing "rapidjson::Document" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramsLibrary.cxx:2303:14: warning: no header providing "rapidjson::ParseResult" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramsLibrary.cxx:2305:54: warning: no header providing "rapidjson::GetParseErrorFunc" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramsLibrary.cxx:2308:45: warning: no header providing "strlen" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramsLibrary.cxx:2316:19: warning: no header providing "rapidjson::Value" is directly included [misc-include-cleaner] PWGDQ/Core/HistogramsLibrary.cxx:2316:105: warning: Potential leak of memory pointed to by 'xbins' [clang-analyzer-cplusplus.NewDeleteLeaks] ``` #### `PWGDQ/Core/HistogramsLibrary.h` ```text PWGDQ/Core/HistogramsLibrary.h:18:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGDQ/Core/HistogramsLibrary.h:20:1: warning: included header VarManager.h is not used directly [misc-include-cleaner] PWGDQ/Core/HistogramsLibrary.h:21:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] PWGDQ/Core/HistogramsLibrary.h:22:1: warning: included header document.h is not used directly [misc-include-cleaner] ``` #### `PWGDQ/Core/MCProng.cxx` ```text PWGDQ/Core/MCProng.cxx:19:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGDQ/Core/MCProng.cxx:21:10: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGDQ/Core/MCProng.cxx:92:36: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGDQ/Core/MCProng.cxx:161:15: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Core/MCProng.h` ```text PWGDQ/Core/MCProng.h:60:1: warning: included header TNamed.h is not used directly [misc-include-cleaner] PWGDQ/Core/MCProng.h:64:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGDQ/Core/MCProng.h:92:23: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGDQ/Core/MCProng.h:117:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Core/MCSignal.cxx` ```text PWGDQ/Core/MCSignal.cxx:20:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGDQ/Core/MCSignal.cxx:23:24: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGDQ/Core/MCSignal.cxx:50:69: warning: no header providing "MCProng" is directly included [misc-include-cleaner] PWGDQ/Core/MCSignal.cxx:50:98: warning: no header providing "int8_t" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Core/MCSignal.h` ```text PWGDQ/Core/MCSignal.h:63:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGDQ/Core/MCSignal.h:70:90: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGDQ/Core/MCSignal.h:224:7: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Core/MCSignalLibrary.cxx` ```text PWGDQ/Core/MCSignalLibrary.cxx:29:1: warning: no header providing "MCSignal" is directly included [misc-include-cleaner] PWGDQ/Core/MCSignalLibrary.cxx:32:13: warning: variable 'signal' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/MCSignalLibrary.cxx:35:5: warning: no header providing "MCProng" is directly included [misc-include-cleaner] PWGDQ/Core/MCSignalLibrary.cxx:2018:14: warning: no header providing "rapidjson::Document" is directly included [misc-include-cleaner] PWGDQ/Core/MCSignalLibrary.cxx:2021:14: warning: no header providing "rapidjson::ParseResult" is directly included [misc-include-cleaner] PWGDQ/Core/MCSignalLibrary.cxx:2023:5: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGDQ/Core/MCSignalLibrary.cxx:2025:45: warning: no header providing "strlen" is directly included [misc-include-cleaner] PWGDQ/Core/MCSignalLibrary.cxx:2029:54: warning: no header providing "rapidjson::GetParseErrorFunc" is directly included [misc-include-cleaner] PWGDQ/Core/MCSignalLibrary.cxx:2034:19: warning: no header providing "rapidjson::Value" is directly included [misc-include-cleaner] PWGDQ/Core/MCSignalLibrary.cxx:2083:17: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGDQ/Core/MCSignalLibrary.cxx:2090:12: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/Core/MCSignalLibrary.cxx:2131:34: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Core/MCSignalLibrary.h` ```text PWGDQ/Core/MCSignalLibrary.h:21:1: warning: included header document.h is not used directly [misc-include-cleaner] PWGDQ/Core/MCSignalLibrary.h:23:1: warning: included header string is not used directly [misc-include-cleaner] ``` #### `PWGDQ/Core/MixingHandler.cxx` ```text PWGDQ/Core/MixingHandler.cxx:15:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGDQ/Core/MixingHandler.cxx:16:1: warning: included header fstream is not used directly [misc-include-cleaner] PWGDQ/Core/MixingHandler.cxx:19:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGDQ/Core/MixingHandler.cxx:20:1: warning: included header TTimeStamp.h is not used directly [misc-include-cleaner] PWGDQ/Core/MixingHandler.cxx:21:1: warning: included header TRandom.h is not used directly [misc-include-cleaner] PWGDQ/Core/MixingHandler.cxx:23:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGDQ/Core/MixingHandler.cxx:26:34: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGDQ/Core/MixingHandler.cxx:27:49: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGDQ/Core/MixingHandler.cxx:62:3: warning: no header providing "TArrayF" is directly included [misc-include-cleaner] PWGDQ/Core/MixingHandler.cxx:69:64: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGDQ/Core/MixingHandler.cxx:119:20: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/Core/MixingHandler.cxx:138:27: warning: no header providing "TMath::BinarySearch" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Core/MixingHandler.h` ```text PWGDQ/Core/MixingHandler.h:20:1: warning: included header HistogramManager.h is not used directly [misc-include-cleaner] PWGDQ/Core/MixingHandler.h:24:1: warning: included header TArrayI.h is not used directly [misc-include-cleaner] PWGDQ/Core/MixingHandler.h:25:1: warning: included header TClonesArray.h is not used directly [misc-include-cleaner] PWGDQ/Core/MixingHandler.h:26:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGDQ/Core/MixingHandler.h:28:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGDQ/Core/MixingHandler.h:38:11: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGDQ/Core/MixingHandler.h:63:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Core/MixingLibrary.cxx` ```text PWGDQ/Core/MixingLibrary.cxx:19:37: warning: no header providing "MixingHandler" is directly included [misc-include-cleaner] PWGDQ/Core/MixingLibrary.cxx:24:27: warning: no header providing "VarManager" is directly included [misc-include-cleaner] PWGDQ/Core/MixingLibrary.cxx:115:42: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Core/MixingLibrary.h` ```text PWGDQ/Core/MixingLibrary.h:14:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGDQ/Core/MixingLibrary.h:16:1: warning: included header VarManager.h is not used directly [misc-include-cleaner] ``` #### `PWGDQ/Core/MuonMatchingMlResponse.h` ```text PWGDQ/Core/MuonMatchingMlResponse.h:21:1: warning: included header map is not used directly [misc-include-cleaner] PWGDQ/Core/MuonMatchingMlResponse.h:106:40: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGDQ/Core/MuonMatchingMlResponse.h:183:7: warning: constructor does not initialize these fields: mCachedIndexBinning [cppcoreguidelines-pro-type-member-init] PWGDQ/Core/MuonMatchingMlResponse.h:195:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGDQ/Core/MuonMatchingMlResponse.h:270:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGDQ/Core/MuonMatchingMlResponse.h:296:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGDQ/Core/MuonMatchingMlResponse.h:353:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Core/VarManager.cxx` ```text PWGDQ/Core/VarManager.cxx:18:1: warning: included header vector is not used directly [misc-include-cleaner] PWGDQ/Core/VarManager.cxx:20:12: warning: using decl 'cout' is unused [misc-unused-using-decls] PWGDQ/Core/VarManager.cxx:21:12: warning: using decl 'endl' is unused [misc-unused-using-decls] PWGDQ/Core/VarManager.cxx:24:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.cxx:26:1: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.cxx:40:1: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.cxx:42:13: warning: no header providing "ROOT::Math::PxPyPzEVector" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.cxx:44:16: warning: no header providing "o2::vertexing::DCAFitterN" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.cxx:47:16: warning: no header providing "o2::vertexing::FwdDCAFitterN" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.cxx:49:21: warning: no header providing "o2::globaltracking::MatchGlobalFwd" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.cxx:50:36: warning: no header providing "TObject" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.cxx:112:8: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.cxx:171:43: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGDQ/Core/VarManager.cxx:172:43: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGDQ/Core/VarManager.cxx:173:103: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.cxx:180:53: warning: no header providing "o2::parameters::GRPLHCIFData" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.cxx:184:83: warning: no header providing "o2::constants::lhc::BeamDirection" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.cxx:214:34: warning: no header providing "KFParticle" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.cxx:227:18: warning: variable 'calibMean' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.cxx:227:29: warning: variable 'calibSigma' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.cxx:246:9: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.cxx:250:5: warning: no header providing "TH3F" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.cxx:250:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/VarManager.cxx:251:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/VarManager.cxx:273:18: warning: variable 'calibMean' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.cxx:273:29: warning: variable 'calibSigma' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.cxx:273:41: warning: variable 'calibStatus' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.cxx:300:5: warning: no header providing "THnF" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.cxx:300:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/VarManager.cxx:301:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Core/VarManager.cxx:302:29: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `PWGDQ/Core/VarManager.h` ```text PWGDQ/Core/VarManager.h:28:1: warning: included header CollisionTypeHelper.h is not used directly [misc-include-cleaner] PWGDQ/Core/VarManager.h:30:1: warning: included header PIDTOFParamService.h is not used directly [misc-include-cleaner] PWGDQ/Core/VarManager.h:39:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] PWGDQ/Core/VarManager.h:50:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGDQ/Core/VarManager.h:51:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGDQ/Core/VarManager.h:53:1: warning: included header VectorUtil.h is not used directly [misc-include-cleaner] PWGDQ/Core/VarManager.h:54:1: warning: included header TGeoGlobalMagField.h is not used directly [misc-include-cleaner] PWGDQ/Core/VarManager.h:55:1: warning: included header TH3F.h is not used directly [misc-include-cleaner] PWGDQ/Core/VarManager.h:56:1: warning: included header THn.h is not used directly [misc-include-cleaner] PWGDQ/Core/VarManager.h:64:1: warning: included header KFParticleBase.h is not used directly [misc-include-cleaner] PWGDQ/Core/VarManager.h:65:1: warning: included header KFVertex.h is not used directly [misc-include-cleaner] PWGDQ/Core/VarManager.h:67:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGDQ/Core/VarManager.h:76:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGDQ/Core/VarManager.h:77:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGDQ/Core/VarManager.h:78:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGDQ/Core/VarManager.h:80:65: warning: no header providing "ROOT::Math::MatRepSym" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:92:10: warning: no header providing "BIT" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:1080:25: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:1109:50: warning: no header providing "o2::parameters::GRPLHCIFData" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:1142:14: warning: no header providing "o2::mch::TrackExtrap" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:1170:49: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:1226:34: warning: no header providing "TMath::ATan2" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:1232:51: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:1234:42: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:1246:27: warning: no header providing "o2::dataformats::GlobalFwdTrack" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:1377:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:1469:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:1504:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:1508:14: warning: no header providing "o2::track::TrackParametrizationWithError" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:1509:3: warning: uninitialized record type: 'trkpos_par' [cppcoreguidelines-pro-type-member-init] PWGDQ/Core/VarManager.h:1510:3: warning: uninitialized record type: 'trkmom_par' [cppcoreguidelines-pro-type-member-init] PWGDQ/Core/VarManager.h:1511:3: warning: uninitialized record type: 'trk_cov' [cppcoreguidelines-pro-type-member-init] PWGDQ/Core/VarManager.h:1535:3: warning: uninitialized record type: 'trk_cov' [cppcoreguidelines-pro-type-member-init] PWGDQ/Core/VarManager.h:1596:19: warning: no header providing "o2::math_utils::Point3D" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:1732:39: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:2208:116: warning: no header providing "TMath::Cos" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:2211:119: warning: no header providing "TMath::Sin" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:2350:7: warning: variable 'idx_v22ev1' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.h:2351:7: warning: variable 'idx_v24ev1' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.h:2352:7: warning: variable 'idx_v22ev2' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.h:2353:7: warning: variable 'idx_v24ev2' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.h:2496:86: warning: no header providing "TMath::PiOver2" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:2496:105: warning: no header providing "TMath::ACos" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:2497:41: warning: no header providing "TMath::TwoPi" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:2505:60: warning: no header providing "TMath::Floor" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:3064:9: warning: variable 'MassHadron' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.h:3066:25: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:3072:20: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:3072:92: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:3102:44: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:3130:11: warning: variable 'MassHadron' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.h:3251:63: warning: no header providing "TMath::ASin" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:3277:17: warning: no header providing "ROOT::Math::XYZVectorF" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:3348:19: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:3405:66: warning: no header providing "TMath::Sign" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:4426:36: warning: no header providing "o2::base::GeometryManager" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:4498:9: warning: variable 'm1' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.h:4498:13: warning: variable 'm2' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.h:4498:17: warning: variable 'm3' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.h:4720:9: warning: variable 'mtrack' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.h:4721:9: warning: variable 'mlepton1' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.h:4721:19: warning: variable 'mlepton2' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.h:4740:7: warning: redundant condition 'trackHasCov' [bugprone-redundant-branch-condition] PWGDQ/Core/VarManager.h:4814:7: warning: uninitialized record type: 'covMatrixPCA' [cppcoreguidelines-pro-type-member-init] PWGDQ/Core/VarManager.h:5700:48: warning: no header providing "ROOT::Math::VectorUtil::DeltaR" is directly included [misc-include-cleaner] PWGDQ/Core/VarManager.h:5722:9: warning: variable 'mtrack1' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.h:5722:18: warning: variable 'mtrack2' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.h:5723:9: warning: variable 'mlepton1' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.h:5723:19: warning: variable 'mlepton2' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Core/VarManager.h:5793:7: warning: uninitialized record type: 'covMatrixPCA' [cppcoreguidelines-pro-type-member-init] PWGDQ/Core/VarManager.h:6167:15: warning: no header providing "upchelpers::FITInfo" is directly included [misc-include-cleaner] ``` #### `PWGDQ/DataModel/MchTrkEffTables.h` ```text PWGDQ/DataModel/MchTrkEffTables.h:31:42: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] ``` #### `PWGDQ/DataModel/ReducedInfoTables.h` ```text PWGDQ/DataModel/ReducedInfoTables.h:27:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:37:46: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:235:36: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:282:52: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:294:40: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:343:99: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:345:99: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:347:99: warning: no header providing "o2::aod::track::TRD" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:349:99: warning: no header providing "o2::aod::track::TOF" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:395:27: warning: no header providing "o2::aod::pidtpc::TPCNSigmaEl" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:395:48: warning: no header providing "o2::aod::pidtpc::TPCNSigmaMu" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:396:27: warning: no header providing "o2::aod::pidtpc::TPCNSigmaPi" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:396:48: warning: no header providing "o2::aod::pidtpc::TPCNSigmaKa" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:396:69: warning: no header providing "o2::aod::pidtpc::TPCNSigmaPr" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:397:31: warning: no header providing "o2::aod::pidtofbeta::Beta" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:398:27: warning: no header providing "o2::aod::pidtof::TOFNSigmaEl" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:398:48: warning: no header providing "o2::aod::pidtof::TOFNSigmaMu" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:399:27: warning: no header providing "o2::aod::pidtof::TOFNSigmaPi" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:399:48: warning: no header providing "o2::aod::pidtof::TOFNSigmaKa" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:399:69: warning: no header providing "o2::aod::pidtof::TOFNSigmaPr" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:542:31: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedInfoTables.h:1163:38: warning: no header providing "int8_t" is directly included [misc-include-cleaner] ``` #### `PWGDQ/DataModel/ReducedTablesAlice3.h` ```text PWGDQ/DataModel/ReducedTablesAlice3.h:89:46: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedTablesAlice3.h:92:99: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedTablesAlice3.h:94:99: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedTablesAlice3.h:96:99: warning: no header providing "o2::aod::track::TRD" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedTablesAlice3.h:98:99: warning: no header providing "o2::aod::track::TOF" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedTablesAlice3.h:100:80: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedTablesAlice3.h:102:80: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedTablesAlice3.h:104:80: warning: no header providing "std::sinh" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedTablesAlice3.h:106:80: warning: no header providing "std::cosh" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedTablesAlice3.h:126:52: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGDQ/DataModel/ReducedTablesAlice3.h:149:51: warning: no header providing "std::log" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Macros/dqFlowAccWeights.C` ```text PWGDQ/Macros/dqFlowAccWeights.C:17:1: warning: included header span is not used directly [misc-include-cleaner] PWGDQ/Macros/dqFlowAccWeights.C:20:1: warning: included header unordered_map is not used directly [misc-include-cleaner] PWGDQ/Macros/dqFlowAccWeights.C:21:1: warning: included header vector is not used directly [misc-include-cleaner] PWGDQ/Macros/dqFlowAccWeights.C:22:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGDQ/Macros/dqFlowAccWeights.C:24:1: warning: included header TSystem.h is not used directly [misc-include-cleaner] PWGDQ/Macros/dqFlowAccWeights.C:27:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGDQ/Macros/dqFlowAccWeights.C:33:23: error: unknown type name 'int64'; did you mean 'int4'? [clang-diagnostic-error] PWGDQ/Macros/dqFlowAccWeights.C:33:23: warning: no header providing "int4" is directly included [misc-include-cleaner] PWGDQ/Macros/dqFlowAccWeights.C:33:29: error: no viable conversion from 'long' to 'int4' [clang-diagnostic-error] PWGDQ/Macros/dqFlowAccWeights.C:33:51: error: unknown type name 'int64'; did you mean 'int4'? [clang-diagnostic-error] PWGDQ/Macros/dqFlowAccWeights.C:33:57: error: no viable conversion from 'long' to 'int4' [clang-diagnostic-error] PWGDQ/Macros/dqFlowAccWeights.C:44:35: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGDQ/Macros/dqFlowAccWeights.C:47:10: warning: variable 'file' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Macros/dqFlowAccWeights.C:50:17: warning: no header providing "std::exception" is directly included [misc-include-cleaner] PWGDQ/Macros/dqFlowAccWeights.C:54:15: warning: variable 'weights' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Macros/dqFlowAccWeights.C:64:15: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGDQ/Macros/dqFlowAccWeights.C:65:5: warning: no header providing "std::map" is directly included [misc-include-cleaner] PWGDQ/Macros/dqFlowAccWeights.C:66:26: warning: no header providing "std::pair" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Macros/evalMchTrackingEfficiency.cxx` ```text PWGDQ/Macros/evalMchTrackingEfficiency.cxx:22:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGDQ/Macros/evalMchTrackingEfficiency.cxx:23:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGDQ/Macros/evalMchTrackingEfficiency.cxx:37:30: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGDQ/Macros/evalMchTrackingEfficiency.cxx:46:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Macros/evalMchTrackingEfficiency.cxx:47:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Macros/evalMchTrackingEfficiency.cxx:63:7: warning: Value stored to 'nBinMinPt' during its initialization is never read [clang-analyzer-deadcode.DeadStores] PWGDQ/Macros/evalMchTrackingEfficiency.cxx:63:7: warning: unused variable 'nBinMinPt' [clang-diagnostic-unused-variable] PWGDQ/Macros/evalMchTrackingEfficiency.cxx:74:39: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGDQ/Macros/evalMchTrackingEfficiency.cxx:83:15: warning: unused variable 'hChNames' [clang-diagnostic-unused-variable] PWGDQ/Macros/evalMchTrackingEfficiency.cxx:91:15: warning: unused variable 'hStNames' [clang-diagnostic-unused-variable] PWGDQ/Macros/evalMchTrackingEfficiency.cxx:99:3: warning: no header providing "TH2F" is directly included [misc-include-cleaner] PWGDQ/Macros/evalMchTrackingEfficiency.cxx:274:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Macros/evalMchTrackingEfficiency.cxx:322:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Macros/evalMchTrackingEfficiency.cxx:402:21: warning: no header providing "kRed" is directly included [misc-include-cleaner] PWGDQ/Macros/evalMchTrackingEfficiency.cxx:402:27: warning: no header providing "kMagenta" is directly included [misc-include-cleaner] PWGDQ/Macros/evalMchTrackingEfficiency.cxx:402:37: warning: no header providing "kBlue" is directly included [misc-include-cleaner] PWGDQ/Macros/evalMchTrackingEfficiency.cxx:402:44: warning: no header providing "kAzure" is directly included [misc-include-cleaner] PWGDQ/Macros/evalMchTrackingEfficiency.cxx:402:57: warning: no header providing "kGreen" is directly included [misc-include-cleaner] PWGDQ/Macros/evalMchTrackingEfficiency.cxx:402:77: warning: no header providing "kOrange" is directly included [misc-include-cleaner] PWGDQ/Macros/evalMchTrackingEfficiency.cxx:402:103: warning: no header providing "kGray" is directly included [misc-include-cleaner] PWGDQ/Macros/evalMchTrackingEfficiency.cxx:402:125: warning: no header providing "kBlack" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Macros/fit_library/CB2Pdf.cxx` ```text PWGDQ/Macros/fit_library/CB2Pdf.cxx:14:1: warning: included header Riostream.h is not used directly [misc-include-cleaner] PWGDQ/Macros/fit_library/CB2Pdf.cxx:18:1: warning: included header RooAbsCategory.h is not used directly [misc-include-cleaner] PWGDQ/Macros/fit_library/CB2Pdf.cxx:22:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/CB2Pdf.cxx:26:28: warning: declaration uses identifier '_A', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/CB2Pdf.cxx:27:28: warning: declaration uses identifier '_B', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/CB2Pdf.cxx:28:28: warning: declaration uses identifier '_C', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/CB2Pdf.cxx:29:28: warning: declaration uses identifier '_D', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/CB2Pdf.cxx:30:28: warning: declaration uses identifier '_E', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/CB2Pdf.cxx:31:28: warning: declaration uses identifier '_F', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/CB2Pdf.cxx:31:34: warning: no header providing "RooAbsPdf" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/CB2Pdf.cxx:53:1: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/CB2Pdf.cxx:60:30: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Macros/fit_library/CB2Pdf.h` ```text PWGDQ/Macros/fit_library/CB2Pdf.h:19:1: warning: included header RooCategoryProxy.h is not used directly [misc-include-cleaner] PWGDQ/Macros/fit_library/CB2Pdf.h:21:1: warning: included header RooAbsCategory.h is not used directly [misc-include-cleaner] PWGDQ/Macros/fit_library/CB2Pdf.h:29:22: warning: declaration uses identifier '_A', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/CB2Pdf.h:30:22: warning: declaration uses identifier '_B', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/CB2Pdf.h:31:22: warning: declaration uses identifier '_C', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/CB2Pdf.h:32:22: warning: declaration uses identifier '_D', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/CB2Pdf.h:33:22: warning: declaration uses identifier '_E', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/CB2Pdf.h:34:22: warning: declaration uses identifier '_F', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/CB2Pdf.h:36:11: warning: no header providing "TObject" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/CB2Pdf.h:36:20: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGDQ/Macros/fit_library/CB2Pdf.h:37:18: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGDQ/Macros/fit_library/CB2Pdf.h:48:3: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/CB2Pdf.h:48:12: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGDQ/Macros/fit_library/CB2Pdf.h:51:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Macros/fit_library/ExpPdf.cxx` ```text PWGDQ/Macros/fit_library/ExpPdf.cxx:14:1: warning: included header Riostream.h is not used directly [misc-include-cleaner] PWGDQ/Macros/fit_library/ExpPdf.cxx:18:1: warning: included header RooAbsCategory.h is not used directly [misc-include-cleaner] PWGDQ/Macros/fit_library/ExpPdf.cxx:22:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/ExpPdf.cxx:26:28: warning: declaration uses identifier '_A', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/ExpPdf.cxx:27:28: warning: declaration uses identifier '_B', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/ExpPdf.cxx:27:34: warning: no header providing "RooAbsPdf" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/ExpPdf.cxx:41:1: warning: no header providing "Double_t" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Macros/fit_library/ExpPdf.h` ```text PWGDQ/Macros/fit_library/ExpPdf.h:19:1: warning: included header RooCategoryProxy.h is not used directly [misc-include-cleaner] PWGDQ/Macros/fit_library/ExpPdf.h:21:1: warning: included header RooAbsCategory.h is not used directly [misc-include-cleaner] PWGDQ/Macros/fit_library/ExpPdf.h:29:22: warning: declaration uses identifier '_A', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/ExpPdf.h:30:22: warning: declaration uses identifier '_B', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/ExpPdf.h:32:11: warning: no header providing "TObject" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/ExpPdf.h:32:20: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGDQ/Macros/fit_library/ExpPdf.h:33:18: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGDQ/Macros/fit_library/ExpPdf.h:40:3: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/ExpPdf.h:40:12: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGDQ/Macros/fit_library/ExpPdf.h:43:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Macros/fit_library/GausPdf.cxx` ```text PWGDQ/Macros/fit_library/GausPdf.cxx:14:1: warning: included header Riostream.h is not used directly [misc-include-cleaner] PWGDQ/Macros/fit_library/GausPdf.cxx:18:1: warning: included header RooAbsCategory.h is not used directly [misc-include-cleaner] PWGDQ/Macros/fit_library/GausPdf.cxx:22:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/GausPdf.cxx:26:30: warning: declaration uses identifier '_A', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/GausPdf.cxx:27:30: warning: declaration uses identifier '_B', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/GausPdf.cxx:27:36: warning: no header providing "RooAbsPdf" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/GausPdf.cxx:41:1: warning: no header providing "Double_t" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Macros/fit_library/GausPdf.h` ```text PWGDQ/Macros/fit_library/GausPdf.h:19:1: warning: included header RooCategoryProxy.h is not used directly [misc-include-cleaner] PWGDQ/Macros/fit_library/GausPdf.h:21:1: warning: included header RooAbsCategory.h is not used directly [misc-include-cleaner] PWGDQ/Macros/fit_library/GausPdf.h:29:23: warning: declaration uses identifier '_A', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/GausPdf.h:30:23: warning: declaration uses identifier '_B', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/GausPdf.h:32:11: warning: no header providing "TObject" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/GausPdf.h:32:20: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGDQ/Macros/fit_library/GausPdf.h:33:18: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGDQ/Macros/fit_library/GausPdf.h:40:3: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/GausPdf.h:40:12: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGDQ/Macros/fit_library/GausPdf.h:43:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Macros/fit_library/Pol4ExpPdf.cxx` ```text PWGDQ/Macros/fit_library/Pol4ExpPdf.cxx:14:1: warning: included header Riostream.h is not used directly [misc-include-cleaner] PWGDQ/Macros/fit_library/Pol4ExpPdf.cxx:18:1: warning: included header RooAbsCategory.h is not used directly [misc-include-cleaner] PWGDQ/Macros/fit_library/Pol4ExpPdf.cxx:22:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/Pol4ExpPdf.cxx:26:36: warning: declaration uses identifier '_P0', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/Pol4ExpPdf.cxx:27:36: warning: declaration uses identifier '_P1', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/Pol4ExpPdf.cxx:28:36: warning: declaration uses identifier '_P2', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/Pol4ExpPdf.cxx:29:36: warning: declaration uses identifier '_P3', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/Pol4ExpPdf.cxx:30:36: warning: declaration uses identifier '_P4', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/Pol4ExpPdf.cxx:31:36: warning: declaration uses identifier '_P5', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/Pol4ExpPdf.cxx:31:43: warning: no header providing "RooAbsPdf" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/Pol4ExpPdf.cxx:53:1: warning: no header providing "Double_t" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Macros/fit_library/Pol4ExpPdf.h` ```text PWGDQ/Macros/fit_library/Pol4ExpPdf.h:19:1: warning: included header RooCategoryProxy.h is not used directly [misc-include-cleaner] PWGDQ/Macros/fit_library/Pol4ExpPdf.h:21:1: warning: included header RooAbsCategory.h is not used directly [misc-include-cleaner] PWGDQ/Macros/fit_library/Pol4ExpPdf.h:23:1: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/Pol4ExpPdf.h:31:26: warning: declaration uses identifier '_P0', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/Pol4ExpPdf.h:32:26: warning: declaration uses identifier '_P1', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/Pol4ExpPdf.h:33:26: warning: declaration uses identifier '_P2', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/Pol4ExpPdf.h:34:26: warning: declaration uses identifier '_P3', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/Pol4ExpPdf.h:35:26: warning: declaration uses identifier '_P4', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/Pol4ExpPdf.h:36:26: warning: declaration uses identifier '_P5', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/Pol4ExpPdf.h:38:11: warning: no header providing "TObject" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/Pol4ExpPdf.h:38:20: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGDQ/Macros/fit_library/Pol4ExpPdf.h:39:18: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGDQ/Macros/fit_library/Pol4ExpPdf.h:50:3: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/Pol4ExpPdf.h:50:12: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGDQ/Macros/fit_library/Pol4ExpPdf.h:53:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Macros/fit_library/VWGPdf.cxx` ```text PWGDQ/Macros/fit_library/VWGPdf.cxx:14:1: warning: included header Riostream.h is not used directly [misc-include-cleaner] PWGDQ/Macros/fit_library/VWGPdf.cxx:18:1: warning: included header RooAbsCategory.h is not used directly [misc-include-cleaner] PWGDQ/Macros/fit_library/VWGPdf.cxx:22:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/VWGPdf.cxx:26:28: warning: declaration uses identifier '_A', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/VWGPdf.cxx:27:28: warning: declaration uses identifier '_B', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/VWGPdf.cxx:28:28: warning: declaration uses identifier '_C', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/VWGPdf.cxx:28:34: warning: no header providing "RooAbsPdf" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/VWGPdf.cxx:44:1: warning: no header providing "Double_t" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Macros/fit_library/VWGPdf.h` ```text PWGDQ/Macros/fit_library/VWGPdf.h:19:1: warning: included header RooCategoryProxy.h is not used directly [misc-include-cleaner] PWGDQ/Macros/fit_library/VWGPdf.h:21:1: warning: included header RooAbsCategory.h is not used directly [misc-include-cleaner] PWGDQ/Macros/fit_library/VWGPdf.h:29:22: warning: declaration uses identifier '_A', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/VWGPdf.h:30:22: warning: declaration uses identifier '_B', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/VWGPdf.h:31:22: warning: declaration uses identifier '_C', which is a reserved identifier [bugprone-reserved-identifier] PWGDQ/Macros/fit_library/VWGPdf.h:33:11: warning: no header providing "TObject" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/VWGPdf.h:33:20: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGDQ/Macros/fit_library/VWGPdf.h:34:18: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGDQ/Macros/fit_library/VWGPdf.h:42:3: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGDQ/Macros/fit_library/VWGPdf.h:42:12: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGDQ/Macros/fit_library/VWGPdf.h:45:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGDQ/TableProducer/generatedQuarkoniaMC.cxx` ```text PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:20:1: warning: included header EPCalibrationTables.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:21:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:22:1: warning: included header LFStrangenessPIDTables.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:23:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:25:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:26:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:27:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:29:1: warning: included header Qvectors.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:30:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:31:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:33:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:34:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:35:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:36:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:37:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:38:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:39:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:40:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:43:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:46:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:51:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:52:1: warning: included header map is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:54:1: warning: included header utility is not used directly [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:60:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:71:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:81:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:81:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:89:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:92:3: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:94:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:94:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:99:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:99:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:116:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:128:10: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:129:18: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:129:116: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:135:34: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:135:39: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:148:153: warning: no header providing "o2::aod::CentFT0Ms" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:148:169: warning: no header providing "o2::aod::CentFT0As" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:148:185: warning: no header providing "o2::aod::CentFT0Cs" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:148:201: warning: no header providing "o2::aod::CentFV0As" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:148:217: warning: no header providing "o2::aod::FT0Mults" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:163:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:177:10: warning: no header providing "std::fill" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:188:13: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/generatedQuarkoniaMC.cxx:228:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGDQ/TableProducer/tableMaker.cxx` ```text PWGDQ/TableProducer/tableMaker.cxx:48:1: warning: included header InteractionRecord.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:49:1: warning: included header RecoContainer.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:51:1: warning: included header ROFRecord.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:56:1: warning: included header PVertexerParams.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:57:1: warning: included header VertexTrackMatcher.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:58:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:59:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:64:1: warning: included header Primitive2D.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:65:1: warning: included header PrimaryVertex.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:66:1: warning: included header VtxTrackIndex.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:67:1: warning: included header VtxTrackRef.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:69:1: warning: included header TGeoGlobalMagField.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:71:12: warning: using decl 'cout' is unused [misc-unused-using-decls] PWGDQ/TableProducer/tableMaker.cxx:72:12: warning: using decl 'endl' is unused [misc-unused-using-decls] PWGDQ/TableProducer/tableMaker.cxx:129:18: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:150:8: warning: constructor does not initialize these fields: fHistMan, fCCDB, fEventCut, fCurrentRun [cppcoreguidelines-pro-type-member-init] PWGDQ/TableProducer/tableMaker.cxx:152:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:170:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:170:13: warning: no header providing "THashList" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:171:13: warning: no header providing "TList" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:174:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:175:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:200:18: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:209:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:209:79: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:209:106: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:209:133: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:222:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:226:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:240:89: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:244:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:263:42: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:271:5: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:305:26: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:360:23: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:379:233: warning: no header providing "std::nullptr_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:449:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:452:6: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:458:48: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:458:65: warning: no header providing "TH2D" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:458:92: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:459:78: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:475:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:478:6: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:558:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:576:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:671:20: warning: no header providing "o2::track::TrackParCovFwd" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:770:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:921:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:924:6: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:930:48: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:930:92: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:931:78: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:947:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:950:6: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:1023:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:1041:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:1190:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:1253:10: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker.cxx:1387:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:1390:6: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:1402:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:1405:6: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:1482:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:1485:6: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:1504:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:1507:6: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:1519:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:1522:6: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:1597:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:1600:6: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:1714:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:1717:6: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker.cxx:1791:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGDQ/TableProducer/tableMakerJpsiHf.cxx` ```text PWGDQ/TableProducer/tableMakerJpsiHf.cxx:18:1: warning: included header AnalysisCut.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:30:1: warning: included header HistogramRegistry.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:45:18: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:70:40: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:71:40: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:72:40: warning: no header providing "std::sinh" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:73:39: warning: no header providing "std::cosh" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:74:35: warning: no header providing "std::log" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:74:45: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:79:50: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:95:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:106:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:128:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:128:13: warning: no header providing "THashList" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:133:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:135:10: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:136:15: warning: no header providing "std::accumulate" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:162:7: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:164:25: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:259:14: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:259:39: warning: no header providing "o2::aod::hf_cand_2prong::DecayType" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:324:18: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerJpsiHf.cxx:449:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGDQ/TableProducer/tableMakerMC.cxx` ```text PWGDQ/TableProducer/tableMakerMC.cxx:43:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:45:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:51:1: warning: included header TGeoGlobalMagField.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:98:18: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:113:8: warning: constructor does not initialize these fields: fHistMan, fCCDB, fEventCut, fCurrentRun [cppcoreguidelines-pro-type-member-init] PWGDQ/TableProducer/tableMakerMC.cxx:115:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:141:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:141:13: warning: no header providing "THashList" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:146:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:168:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:181:89: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:185:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:198:5: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:204:23: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:222:42: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:259:26: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:326:233: warning: no header providing "std::nullptr_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:341:14: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:343:24: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:409:52: warning: no header providing "o2::aod::evsel::kNsel" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:426:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC.cxx:429:8: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC.cxx:442:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC.cxx:445:8: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC.cxx:579:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC.cxx:598:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC.cxx:712:22: warning: no header providing "o2::track::TrackParCovFwd" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:821:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC.cxx:972:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC.cxx:976:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC.cxx:1061:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC.cxx:1064:8: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC.cxx:1077:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC.cxx:1080:8: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC.cxx:1202:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC.cxx:1221:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC.cxx:1378:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC.cxx:1511:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC.cxx:1515:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC.cxx:1531:10: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC.cxx:1761:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC.cxx:1764:6: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC.cxx:1767:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx` ```text PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:30:1: warning: included header TriggerAliases.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:46:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:48:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:51:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:54:1: warning: included header TGeoGlobalMagField.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:133:8: warning: constructor does not initialize these fields: fHistMan, fCCDB, fEventCut, fCurrentRun, cutValues [cppcoreguidelines-pro-type-member-init] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:135:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:165:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:165:13: warning: no header providing "THashList" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:169:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:172:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:231:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:232:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:264:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:281:42: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:290:5: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:309:26: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:329:21: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:394:28: warning: no header providing "o2::cuts_ml::CutNot" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:395:22: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:431:30: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:448:29: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:595:43: warning: no header providing "o2::aod::evsel::kNsel" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:597:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:600:8: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:631:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:634:8: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:644:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:647:8: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:737:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:756:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:936:20: warning: no header providing "o2::track::TrackParCovFwd" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:937:26: warning: no header providing "o2::dataformats::GlobalFwdTrack" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:1029:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:1197:27: warning: no header providing "std::atol" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:1352:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:1356:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:1364:10: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:1411:63: warning: no header providing "o2::aod::evsel::selectionLabels" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:1548:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:1551:6: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:1554:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx` ```text PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:25:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:26:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:27:1: warning: included header TH3F.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:28:1: warning: included header THashList.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:29:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:32:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:39:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:102:8: warning: constructor does not initialize these fields: fEventCut [cppcoreguidelines-pro-type-member-init] PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:105:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:109:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:126:52: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:137:20: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:150:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:153:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:178:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:180:53: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:181:32: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:238:21: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:251:37: warning: no header providing "TMath::Cos" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:252:29: warning: no header providing "TMath::Sin" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:597:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGDQ/TableProducer/tableMaker_withAssoc.cxx` ```text PWGDQ/TableProducer/tableMaker_withAssoc.cxx:37:1: warning: included header TriggerAliases.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:39:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:45:1: warning: included header MftmchMatchingML.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:52:1: warning: included header InteractionRecord.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:55:1: warning: included header ROFRecord.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:61:1: warning: included header PVertexerParams.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:62:1: warning: included header VertexTrackMatcher.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:63:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:64:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:69:1: warning: included header Primitive2D.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:70:1: warning: included header PrimaryVertex.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:71:1: warning: included header VtxTrackIndex.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:72:1: warning: included header VtxTrackRef.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:74:1: warning: included header TGeoGlobalMagField.h is not used directly [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:131:18: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:167:8: warning: constructor does not initialize these fields: fHistMan, fCCDB, fEventCut, fCurrentRun, cutValues [cppcoreguidelines-pro-type-member-init] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:169:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:192:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:192:13: warning: no header providing "THashList" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:193:13: warning: no header providing "TList" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:198:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:199:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:212:18: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:246:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:246:81: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:246:108: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:246:135: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:286:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:287:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:304:22: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:308:31: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:312:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:331:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:364:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:386:42: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:398:5: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:424:26: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:463:28: warning: no header providing "o2::cuts_ml::CutNot" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:464:22: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:492:23: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:502:30: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:519:29: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:530:10: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:589:5: warning: no header providing "TH2D" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:589:135: warning: no header providing "o2::aod::evsel::kNsel" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:595:63: warning: no header providing "o2::aod::evsel::selectionLabels" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:609:5: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:663:45: warning: no header providing "o2::constants::lhc::LHCBunchSpacingNS" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:665:32: warning: no header providing "std::lrint" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:826:12: warning: variable 'tvxRate' is not initialized [cppcoreguidelines-init-variables] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:833:71: warning: no header providing "o2::constants::lhc::LHCRevFreq" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:834:23: warning: no header providing "std::log" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:869:16: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:870:45: warning: no header providing "o2::ft0::Triggers" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:874:56: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:874:108: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:876:60: warning: no header providing "o2::aod::evsel::kIsBBZNA" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:877:60: warning: no header providing "o2::aod::evsel::kIsBBZNC" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:879:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:881:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:883:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:885:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:888:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:891:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:894:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:906:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:909:8: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:950:51: warning: no header providing "std::nullptr_t" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:987:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:990:8: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:996:50: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:996:108: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:1002:84: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:1018:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:1021:8: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:1160:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:1179:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:1216:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:1218:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:1330:20: warning: no header providing "o2::track::TrackParCovFwd" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:1430:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:1577:27: warning: no header providing "std::atol" is directly included [misc-include-cleaner] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:1841:10: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:1844:6: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/TableProducer/tableMaker_withAssoc.cxx:1847:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/DalitzSelection.cxx` ```text PWGDQ/Tasks/DalitzSelection.cxx:24:1: warning: included header TriggerAliases.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:25:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:27:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:37:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:50:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:50:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGDQ/Tasks/DalitzSelection.cxx:60:18: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:63:8: warning: constructor does not initialize these fields: fCCDB, fCurrentRun, fEventCut, fHistMan [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/DalitzSelection.cxx:64:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:68:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:80:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:80:79: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:80:106: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:80:133: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:86:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:92:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:92:13: warning: no header providing "THashList" is directly included [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:93:13: warning: no header providing "TList" is directly included [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:95:17: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:104:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:108:5: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:114:23: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:145:42: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:154:24: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:162:10: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:183:5: warning: no header providing "TH1I" is directly included [misc-include-cleaner] PWGDQ/Tasks/DalitzSelection.cxx:261:13: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Tasks/DalitzSelection.cxx:282:9: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Tasks/DalitzSelection.cxx:334:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/MIDefficiency.cxx` ```text PWGDQ/Tasks/MIDefficiency.cxx:24:1: warning: included header CallbackService.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/MIDefficiency.cxx:25:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/MIDefficiency.cxx:26:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGDQ/Tasks/MIDefficiency.cxx:33:1: warning: included header Variant.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/MIDefficiency.cxx:34:1: warning: included header ConfigParamSpec.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/MIDefficiency.cxx:35:1: warning: included header CompletionPolicyHelpers.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/MIDefficiency.cxx:37:1: warning: included header Efficiency.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/MIDefficiency.cxx:45:23: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGDQ/Tasks/MIDefficiency.cxx:51:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGDQ/Tasks/MIDefficiency.cxx:55:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/Tasks/MIDefficiency.cxx:72:53: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGDQ/Tasks/MIDefficiency.cxx:81:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGDQ/Tasks/MIDefficiency.cxx:81:41: warning: no header providing "o2::aod::fwdtrack::trackType" is directly included [misc-include-cleaner] PWGDQ/Tasks/MIDefficiency.cxx:81:54: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/MIDefficiency.cxx:83:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/MIDefficiency.cxx:89:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGDQ/Tasks/MIDefficiency.cxx:102:56: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGDQ/Tasks/MIDefficiency.cxx:125:78: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGDQ/Tasks/MIDefficiency.cxx:310:67: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGDQ/Tasks/MIDefficiency.cxx:315:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/ModelConverterEventExtended.cxx` ```text PWGDQ/Tasks/ModelConverterEventExtended.cxx:20:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/ModelConverterEventExtended.cxx:21:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/ModelConverterEventExtended.cxx:26:1: warning: included header THashList.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/ModelConverterEventExtended.cxx:27:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/ModelConverterEventExtended.cxx:28:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/ModelConverterEventExtended.cxx:36:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/ModelConverterMultPv.cxx` ```text PWGDQ/Tasks/ModelConverterMultPv.cxx:18:1: warning: included header THashList.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/ModelConverterMultPv.cxx:19:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/ModelConverterMultPv.cxx:20:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/ModelConverterMultPv.cxx:21:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/ModelConverterMultPv.cxx:25:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/ModelConverterMultPv.cxx:34:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGDQ/Tasks/ModelConverterMultPv.cxx:48:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/ModelConverterReducedMCEvents.cxx` ```text PWGDQ/Tasks/ModelConverterReducedMCEvents.cxx:20:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/ModelConverterReducedMCEvents.cxx:21:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/ModelConverterReducedMCEvents.cxx:26:1: warning: included header THashList.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/ModelConverterReducedMCEvents.cxx:27:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/ModelConverterReducedMCEvents.cxx:28:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/ModelConverterReducedMCEvents.cxx:36:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/TagAndProbe.cxx` ```text PWGDQ/Tasks/TagAndProbe.cxx:15:1: warning: included header AnalysisCompositeCut.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:16:1: warning: included header AnalysisCut.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:17:1: warning: included header CutsLibrary.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:20:1: warning: included header MixingHandler.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:25:1: warning: included header EventSelectionParams.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:26:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:30:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:33:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:39:1: warning: included header OutputObjHeader.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:41:1: warning: included header DPLAlpideParam.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:43:1: warning: included header TGeoGlobalMagField.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:44:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:45:1: warning: included header TH3F.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:47:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:48:1: warning: included header TObjString.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:51:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:58:1: warning: included header numeric is not used directly [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:59:1: warning: included header set is not used directly [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:61:1: warning: included header utility is not used directly [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:65:12: warning: using decl 'endl' is unused [misc-unused-using-decls] PWGDQ/Tasks/TagAndProbe.cxx:111:8: warning: constructor does not initialize these fields: fCurrentRun, fCCDB, fHistMan, fMuonFilterMask, fNCutsMuon, fEnableMuonHistos [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/TagAndProbe.cxx:113:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:148:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:162:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:276:25: warning: no header providing "std::atol" is directly included [misc-include-cleaner] PWGDQ/Tasks/TagAndProbe.cxx:375:8: warning: no header providing "Int_t" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/dqCorrelation.cxx` ```text PWGDQ/Tasks/dqCorrelation.cxx:16:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:17:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:19:1: warning: included header AnalysisCompositeCut.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:21:1: warning: included header CutsLibrary.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:22:1: warning: included header HistogramManager.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:23:1: warning: included header HistogramsLibrary.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:24:1: warning: included header MixingHandler.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:30:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:31:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:32:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:33:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:34:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:35:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:40:1: warning: included header TGeoGlobalMagField.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:41:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:42:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:43:1: warning: included header TH3F.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:45:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:49:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:56:12: warning: using decl 'cout' is unused [misc-unused-using-decls] PWGDQ/Tasks/dqCorrelation.cxx:57:12: warning: using decl 'endl' is unused [misc-unused-using-decls] PWGDQ/Tasks/dqCorrelation.cxx:108:18: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:113:24: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:115:8: warning: constructor does not initialize these fields: ccdb, fValuesDilepton, fValuesHadron, fNHadronCutBit, fPtAxis [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/dqCorrelation.cxx:117:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:118:66: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:122:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:122:16: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:143:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:144:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:144:72: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:144:99: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:144:126: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:151:58: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:168:3: warning: no header providing "o2::framework::NoBinningPolicy" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:172:5: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:179:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:185:3: warning: no header providing "TAxis" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:187:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:195:38: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:230:18: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:251:86: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:264:59: warning: no header providing "ConstStr" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:266:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Tasks/dqCorrelation.cxx:266:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Tasks/dqCorrelation.cxx:267:40: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:272:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:319:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:366:10: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:383:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqCorrelation.cxx:397:10: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Tasks/dqCorrelation.cxx:397:15: warning: variable 'dny' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Tasks/dqCorrelation.cxx:397:20: warning: variable 'valx' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Tasks/dqCorrelation.cxx:414:3: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/dqEfficiency.cxx` ```text PWGDQ/Tasks/dqEfficiency.cxx:33:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency.cxx:44:12: warning: using decl 'cout' is unused [misc-unused-using-decls] PWGDQ/Tasks/dqEfficiency.cxx:45:12: warning: using decl 'endl' is unused [misc-unused-using-decls] PWGDQ/Tasks/dqEfficiency.cxx:86:18: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency.cxx:97:8: warning: constructor does not initialize these fields: fHistMan, fEventCut [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/dqEfficiency.cxx:98:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency.cxx:99:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency.cxx:100:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency.cxx:106:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency.cxx:120:44: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency.cxx:163:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency.cxx:167:8: warning: constructor does not initialize these fields: fHistMan [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/dqEfficiency.cxx:310:28: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency.cxx:336:8: warning: constructor does not initialize these fields: fHistMan [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/dqEfficiency.cxx:504:8: warning: constructor does not initialize these fields: ccdb, fCurrentRun, fHistMan [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/dqEfficiency.cxx:512:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency.cxx:515:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency.cxx:1045:8: warning: constructor does not initialize these fields: ccdb, fValuesDilepton, fValuesTrack, fHistMan, fNHadronCutBit [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/dqEfficiency.cxx:1266:129: warning: operator has equivalent nested operands [misc-redundant-expression] PWGDQ/Tasks/dqEfficiency.cxx:1342:8: warning: constructor does not initialize these fields: fHistMan, fValuesQuadruplet [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/dqEfficiency.cxx:1406:10: warning: no header providing "Int_t" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/dqEfficiency_withAssoc.cxx` ```text PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:31:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:34:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:41:1: warning: included header TGeoGlobalMagField.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:42:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:43:1: warning: included header TH3F.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:74:68: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:81:42: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:136:60: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:235:18: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:261:8: warning: constructor does not initialize these fields: fEventCut, fCCDB, fCurrentRun [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:265:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:278:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:278:79: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:278:106: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:278:133: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:286:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:293:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:321:44: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:356:27: warning: no header providing "std::atol" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:423:34: warning: no header providing "std::next" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:427:24: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:437:30: warning: no header providing "std::next" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:491:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:497:8: warning: constructor does not initialize these fields: fCCDB, fHistMan, fCurrentRun [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:550:30: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:820:8: warning: constructor does not initialize these fields: fCCDB, fHistMan, fCurrentRun [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:873:29: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:1127:8: warning: constructor does not initialize these fields: fPairCut, fPrefilterMask, fPrefilterCutBit [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:1314:8: warning: constructor does not initialize these fields: fCurrentRun, fCCDB, fHistMan, fTrackFilterMask, fMuonFilterMask, fNCutsBarrel, fNCutsMuon, fNPairCuts, fEnableBarrelHistos, fEnableMuonHistos [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:1330:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:1335:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:2551:8: warning: constructor does not initialize these fields: fCurrentRun, fCCDB, fHistMan, fNPairHistPrefixes, fLegAFilterMask, fLegBFilterMask, fLegCFilterMask, fCommonTrackCutMask, fNLegCuts, fNCommonTrackCuts [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:2636:22: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:2668:29: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:2720:9: warning: variable 'commonCutIdx' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:2737:31: warning: no header providing "std::floor" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:2737:44: warning: no header providing "TMath::Log2" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:2758:9: warning: variable 'legAIdx' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:2759:9: warning: variable 'legBIdx' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:2760:9: warning: variable 'legCIdx' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:3558:8: warning: constructor does not initialize these fields: fCurrentRun, fNCuts, fNLegCuts, fNPairCuts, fNCommonTrackCuts, fTrackCutBitMap, fCCDB, fValuesDilepton, fValuesHadron, fHistMan [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:3630:3: warning: no header providing "o2::framework::NoBinningPolicy" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:3813:20: warning: no header providing "std::strcmp" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:3985:5: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:4005:33: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:4005:33: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:4446:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:4514:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:4610:8: warning: no header providing "Int_t" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx` ```text PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:37:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:40:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:47:1: warning: included header TGeoGlobalMagField.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:48:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:49:1: warning: included header TH3F.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:55:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:80:68: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:89:42: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:144:60: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:247:46: warning: no header providing "o2::aod::pidTPCFullEl" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:247:65: warning: no header providing "o2::aod::pidTPCFullMu" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:247:84: warning: no header providing "o2::aod::pidTPCFullPi" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:248:46: warning: no header providing "o2::aod::pidTPCFullKa" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:248:65: warning: no header providing "o2::aod::pidTPCFullPr" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:249:46: warning: no header providing "o2::aod::pidTOFFullEl" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:249:65: warning: no header providing "o2::aod::pidTOFFullMu" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:249:84: warning: no header providing "o2::aod::pidTOFFullPi" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:250:46: warning: no header providing "o2::aod::pidTOFFullKa" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:250:65: warning: no header providing "o2::aod::pidTOFFullPr" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:250:84: warning: no header providing "o2::aod::pidTOFbeta" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:265:18: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:288:8: warning: constructor does not initialize these fields: fEventCut, fCCDB, fCurrentRun [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:292:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:305:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:305:79: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:305:106: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:305:133: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:313:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:319:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:386:27: warning: no header providing "std::atol" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:476:34: warning: no header providing "std::next" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:480:24: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:492:30: warning: no header providing "std::next" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:552:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:556:8: warning: constructor does not initialize these fields: fCCDB, fTofResponse, fHistMan, fCurrentRun [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:611:30: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:642:44: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:890:82: warning: no header providing "o2::aod::TOFNSigmaDynEl" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:890:107: warning: no header providing "o2::aod::TOFNSigmaDynPi" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:890:132: warning: no header providing "o2::aod::TOFNSigmaDynKa" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:890:157: warning: no header providing "o2::aod::TOFNSigmaDynPr" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:904:8: warning: constructor does not initialize these fields: fPairCut, fPrefilterMask, fPrefilterCutBit [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:1095:8: warning: constructor does not initialize these fields: fCurrentRun, fCCDB, fHistMan, fTrackFilterMask, fMuonFilterMask, fNCutsBarrel, fNCutsMuon, fNPairCuts, fEnableBarrelHistos [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:1107:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:1112:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:2050:8: warning: constructor does not initialize these fields: fCurrentRun, fNCuts, fNLegCuts, fNPairCuts, fNCommonTrackCuts, fTrackCutBitMap, fCCDB, fValuesDilepton, fValuesHadron, fHistMan, fDileptonLegSignal, fHadronSignal [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:2132:3: warning: no header providing "o2::framework::NoBinningPolicy" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:2308:12: warning: unused local variable 'cfgPairing_PairCutsJSON' of type 'string' (aka 'basic_string') [bugprone-unused-local-non-trivial-variable] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:2333:20: warning: no header providing "std::strcmp" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:2376:9: warning: redundant condition 'isBarrel' [bugprone-redundant-branch-condition] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:2519:5: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:2538:50: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:2538:50: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:2868:52: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:3074:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:3150:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:3250:8: warning: no header providing "Int_t" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/dqFlow.cxx` ```text PWGDQ/Tasks/dqFlow.cxx:23:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:31:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:35:1: warning: included header MixingHandler.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:45:1: warning: included header GFWConfig.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:47:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:52:12: warning: no header providing "std::complex" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:53:12: warning: using decl 'cout' is unused [misc-unused-using-decls] PWGDQ/Tasks/dqFlow.cxx:54:12: warning: using decl 'endl' is unused [misc-unused-using-decls] PWGDQ/Tasks/dqFlow.cxx:55:12: warning: no header providing "pow" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:55:12: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:90:18: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:97:8: warning: constructor does not initialize these fields: ccdb, fEventCut, fPtAxis [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/dqFlow.cxx:105:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:112:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:127:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:131:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:131:79: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:131:106: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:131:133: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:134:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:134:58: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:137:92: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:142:5: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:150:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:158:3: warning: no header providing "TAxis" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:161:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:182:44: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:200:18: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:215:86: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:264:24: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:291:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Tasks/dqFlow.cxx:291:17: warning: variable 'dny' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Tasks/dqFlow.cxx:291:22: warning: variable 'valx' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Tasks/dqFlow.cxx:300:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:360:11: warning: variable 'centrality' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Tasks/dqFlow.cxx:470:17: warning: no header providing "pow" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:581:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGDQ/Tasks/dqFlow.cxx:601:8: warning: no header providing "Int_t" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/filterPP.cxx` ```text PWGDQ/Tasks/filterPP.cxx:22:1: warning: included header TriggerAliases.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/filterPP.cxx:23:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/filterPP.cxx:25:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/filterPP.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/filterPP.cxx:35:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/filterPP.cxx:49:12: warning: using decl 'cout' is unused [misc-unused-using-decls] PWGDQ/Tasks/filterPP.cxx:50:12: warning: using decl 'endl' is unused [misc-unused-using-decls] PWGDQ/Tasks/filterPP.cxx:78:60: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPP.cxx:111:8: warning: constructor does not initialize these fields: fEventCut [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/filterPP.cxx:112:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPP.cxx:113:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPP.cxx:117:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPP.cxx:121:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPP.cxx:137:44: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPP.cxx:176:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPP.cxx:180:8: warning: constructor does not initialize these fields: fHistMan, fCCDB, fCurrentRun [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/filterPP.cxx:189:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPP.cxx:189:79: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPP.cxx:189:106: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPP.cxx:189:133: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPP.cxx:192:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPP.cxx:298:8: warning: constructor does not initialize these fields: fHistMan [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/filterPP.cxx:384:8: warning: constructor does not initialize these fields: fHistMan, fNBarrelCuts, fNMuonCuts [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/filterPP.cxx:427:42: warning: no header providing "std::atoi" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPP.cxx:656:5: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPP.cxx:710:8: warning: no header providing "Int_t" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/filterPPwithAssociation.cxx` ```text PWGDQ/Tasks/filterPPwithAssociation.cxx:22:1: warning: included header TriggerAliases.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:23:1: warning: included header CollisionAssociation.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:24:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:27:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:34:1: warning: included header LHCConstants.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:36:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:39:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:40:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:43:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:46:1: warning: included header TGeoGlobalMagField.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:87:60: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:137:8: warning: constructor does not initialize these fields: fEventCut [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/filterPPwithAssociation.cxx:138:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:139:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:143:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:148:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:164:44: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:203:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:207:8: warning: constructor does not initialize these fields: fHistMan, fCCDB, fCurrentRun [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/filterPPwithAssociation.cxx:220:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:220:79: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:220:106: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:220:133: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:223:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:381:8: warning: constructor does not initialize these fields: fHistMan, fCCDB, fCurrentRun [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/filterPPwithAssociation.cxx:523:8: warning: constructor does not initialize these fields: fHistMan, fCCDB, fCurrentRun, fNBarrelCuts, fNMuonCuts, fNElectronMuonCuts, fPairingLSBarrel, fPairingLSMuon, fPairingLSBarrelMuon [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/filterPPwithAssociation.cxx:563:12: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:586:42: warning: no header providing "std::atoi" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPPwithAssociation.cxx:1273:8: warning: no header providing "Int_t" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/filterPbPb.cxx` ```text PWGDQ/Tasks/filterPbPb.cxx:16:1: warning: included header LHCConstants.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/filterPbPb.cxx:22:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/filterPbPb.cxx:35:50: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPbPb.cxx:36:54: warning: no header providing "o2::aod::BcSels" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPbPb.cxx:39:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPbPb.cxx:40:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPbPb.cxx:40:13: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPbPb.cxx:42:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPbPb.cxx:60:3: warning: no header providing "SGCutParHolder" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPbPb.cxx:62:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPbPb.cxx:71:48: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPbPb.cxx:98:31: warning: no header providing "udhelpers::compatibleBCs" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPbPb.cxx:121:17: warning: no header providing "upchelpers::FITInfo" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPbPb.cxx:122:16: warning: no header providing "udhelpers::getFITinfo" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPbPb.cxx:125:66: warning: no header providing "o2::dataformats::TimeStamp" is directly included [misc-include-cleaner] PWGDQ/Tasks/filterPbPb.cxx:138:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/mchAlignRecord.cxx` ```text PWGDQ/Tasks/mchAlignRecord.cxx:19:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:22:1: warning: included header LHCConstants.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:23:1: warning: included header NameConf.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:25:1: warning: included header TrackMCH.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:27:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:31:1: warning: included header AlignParam.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:32:1: warning: included header DetID.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:33:1: warning: included header DetectorNameConf.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:45:1: warning: included header TrackMCHMID.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:47:1: warning: included header TCanvas.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:48:1: warning: included header TChain.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:49:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:50:1: warning: included header TF1.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:51:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:52:1: warning: included header TGraph.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:53:1: warning: included header TGraphErrors.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:54:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:55:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:57:1: warning: included header TLine.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:58:1: warning: included header TMatrixD.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:59:1: warning: included header TParameter.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:60:1: warning: included header TSystem.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:61:1: warning: included header TTree.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:62:1: warning: included header TTreeReader.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:63:1: warning: included header TTreeReaderValue.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:66:1: warning: included header span is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:70:1: warning: included header unordered_map is not used directly [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:79:12: warning: using decl 'cout' is unused [misc-unused-using-decls] PWGDQ/Tasks/mchAlignRecord.cxx:80:12: warning: using decl 'endl' is unused [misc-unused-using-decls] PWGDQ/Tasks/mchAlignRecord.cxx:87:23: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:89:8: warning: constructor does not initialize these fields: fCCDB, grpmag, geo, fCurrentRun [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/mchAlignRecord.cxx:91:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:98:3: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:102:3: warning: no header providing "std::map" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:102:24: warning: no header providing "o2::math_utils::Transform3D" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:106:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:122:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:131:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:131:17: warning: no header providing "o2::aod::FwdTrkCl" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:131:52: warning: no header providing "o2::aod::fwdtrkcl::fwdtrackId" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:133:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:158:5: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:159:21: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:162:22: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:190:3: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:225:14: warning: no header providing "std::exception" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:230:33: warning: no header providing "std::prev" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:262:82: warning: no header providing "std::next" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:271:36: warning: no header providing "std::make_reverse_iterator" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:290:55: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:318:67: warning: no header providing "gGeoManager" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:350:23: warning: no header providing "o2::math_utils::Point3D" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:363:9: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:381:99: warning: no header providing "o2::aod::FwdTracks" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:381:129: warning: no header providing "o2::aod::FwdTrkCls" is directly included [misc-include-cleaner] PWGDQ/Tasks/mchAlignRecord.cxx:386:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/muonDCA.cxx` ```text PWGDQ/Tasks/muonDCA.cxx:21:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/muonDCA.cxx:32:22: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonDCA.cxx:46:8: warning: constructor does not initialize these fields: fCCDB, fCurrentRun [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/muonDCA.cxx:47:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonDCA.cxx:48:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonDCA.cxx:52:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonDCA.cxx:56:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonDCA.cxx:60:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonDCA.cxx:67:20: warning: no header providing "o2::base::GeometryManager" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonDCA.cxx:72:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonDCA.cxx:81:5: warning: no header providing "o2::framework::HistogramConfigSpec" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonDCA.cxx:81:35: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonDCA.cxx:112:19: warning: no header providing "o2::base::Propagator" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonDCA.cxx:124:24: warning: no header providing "o2::dataformats::GlobalFwdTrack" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonDCA.cxx:135:25: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonDCA.cxx:150:20: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonDCA.cxx:150:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonDCA.cxx:185:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/muonGlobalAlignment.cxx` ```text PWGDQ/Tasks/muonGlobalAlignment.cxx:23:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:27:1: warning: included header Constants.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:30:1: warning: included header limits is not used directly [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:43:29: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:47:27: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:48:30: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:48:40: warning: no header providing "o2::aod::Timestamps" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:50:39: warning: no header providing "o2::aod::FwdTracks" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:50:55: warning: no header providing "o2::aod::FwdTracksCov" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:52:21: warning: no header providing "o2::aod::MFTTracks" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:53:31: warning: no header providing "o2::aod::MFTTracksCov" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:61:31: warning: no header providing "ROOT::Math::SMatrix" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:61:65: warning: no header providing "ROOT::Math::MatRepSym" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:62:30: warning: no header providing "ROOT::Math::SVector" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:62:38: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:66:24: warning: no header providing "o2::dataformats::GlobalFwdTrack" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:66:24: warning: using decl 'GlobalFwdTrack' is unused [misc-unused-using-decls] PWGDQ/Tasks/muonGlobalAlignment.cxx:67:18: warning: no header providing "o2::track::TrackParCovFwd" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:67:18: warning: using decl 'TrackParCovFwd' is unused [misc-unused-using-decls] PWGDQ/Tasks/muonGlobalAlignment.cxx:138:8: warning: constructor does not initialize these fields: ccdbManager, fieldB [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/muonGlobalAlignment.cxx:140:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:151:16: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:168:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:169:14: warning: no header providing "o2::field::MagneticField" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:170:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:172:20: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:176:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:181:39: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:297:15: warning: no header providing "o2::base::Propagator" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:298:20: warning: no header providing "o2::base::GeometryManager" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:301:14: warning: no header providing "o2::mch::TrackExtrap" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:307:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:322:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:339:40: warning: no header providing "std::format" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:339:75: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:402:45: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:436:30: warning: no header providing "TMath::ATan" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:436:78: warning: no header providing "TMath::RadToDeg" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:449:38: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:462:24: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:557:25: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:559:22: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:559:32: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:576:56: warning: no header providing "o2::mch::TrackParam" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:646:45: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:647:45: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:650:20: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:650:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:651:20: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:672:24: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:717:22: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:725:30: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:738:32: warning: no header providing "o2::aod::FwdTrkCls" is directly included [misc-include-cleaner] PWGDQ/Tasks/muonGlobalAlignment.cxx:836:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/qaMatching.cxx` ```text PWGDQ/Tasks/qaMatching.cxx:18:1: warning: included header ReducedInfoTables.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:24:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:30:1: warning: included header ProbFunc.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:34:1: warning: included header limits is not used directly [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:47:23: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:47:33: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:48:32: warning: no header providing "o2::aod::FwdTracks" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:48:48: warning: no header providing "o2::aod::FwdTracksCov" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:49:69: warning: no header providing "o2::aod::McFwdTrackLabels" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:50:21: warning: no header providing "o2::aod::MFTTracks" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:51:31: warning: no header providing "o2::aod::MFTTracksCov" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:52:49: warning: no header providing "o2::aod::McMFTTrackLabels" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:59:31: warning: no header providing "ROOT::Math::SMatrix" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:59:65: warning: no header providing "ROOT::Math::MatRepSym" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:60:30: warning: no header providing "ROOT::Math::SVector" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:60:38: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:64:22: warning: no header providing "TMath::Log10" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:64:40: warning: no header providing "ROOT::Math::chisquared_cdf_c" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:70:8: warning: constructor does not initialize these fields: cutValues, ccdbManager [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/qaMatching.cxx:73:23: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:88:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:102:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:146:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:148:82: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:148:109: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:148:136: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:165:31: warning: no header providing "std::function" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:165:87: warning: no header providing "o2::dataformats::GlobalFwdTrack" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:165:130: warning: no header providing "o2::track::TrackParCovFwd" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:171:10: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:234:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:235:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:237:20: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:246:5: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:265:31: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:274:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:298:50: warning: no header providing "o2::framework::HistPtr" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:322:7: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:334:66: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:411:47: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:412:32: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:430:32: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:639:32: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:729:15: warning: no header providing "o2::base::Propagator" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:732:20: warning: no header providing "o2::base::GeometryManager" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:735:14: warning: no header providing "o2::mch::TrackExtrap" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:736:43: warning: no header providing "o2::field::MagneticField" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:844:51: warning: no header providing "ROOT::Math::Similarity" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:850:41: warning: no header providing "ROOT::Math::Similarity" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:877:48: warning: no header providing "ROOT::Math::Similarity" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:883:41: warning: no header providing "ROOT::Math::Similarity" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:904:48: warning: no header providing "ROOT::Math::Similarity" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:909:41: warning: no header providing "ROOT::Math::Similarity" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:916:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:932:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:953:26: warning: no header providing "o2::cuts_ml::CutNot" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:954:20: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:978:59: warning: no header providing "o2::aod::fwdtrack::ForwardTrackTypeEnum" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:998:30: warning: no header providing "TMath::ATan" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:998:78: warning: no header providing "TMath::RadToDeg" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:1011:38: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:1143:8: warning: no header providing "std::optional" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:1295:30: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:1297:24: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:1297:34: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:1409:71: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:1594:25: warning: no header providing "std::format" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:1724:46: warning: no header providing "o2::mch::TrackParam" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:1726:17: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:1730:31: warning: no header providing "o2::constants::physics::MassMuon" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:2117:25: warning: no header providing "std::format" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:2151:27: warning: no header providing "std::format" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:2259:33: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:2652:25: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGDQ/Tasks/qaMatching.cxx:2677:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/quarkoniaToHyperons.cxx` ```text PWGDQ/Tasks/quarkoniaToHyperons.cxx:37:1: warning: included header UPCHelpers.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:39:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:42:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:43:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:44:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:45:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:46:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:47:1: warning: included header MlResponse.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:55:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:57:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:64:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:65:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:66:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:67:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:68:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:70:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:102:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, magField, lut, pdgDB, maskTopological, maskTopoNoV0Radius, maskTopoNoDCANegToPV, maskTopoNoDCAPosToPV, maskTopoNoCosPA, maskTopoNoDCAV0Dau, maskTopoNoDCAV0ToPV, maskTrackProperties, maskK0ShortSpecific, maskLambdaSpecific, maskAntiLambdaSpecific, maskSelectionK0Short, maskSelectionLambda, maskSelectionAntiLambda, secondaryMaskSelectionLambda, secondaryMaskSelectionAntiLambda [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/quarkoniaToHyperons.cxx:103:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:103:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:106:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:156:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:281:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:312:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:313:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:319:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:322:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:325:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:325:40: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:364:93: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:369:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:381:20: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:450:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:520:54: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:521:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:521:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:538:56: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:559:59: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:1065:14: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:1079:17: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:1094:29: warning: no header providing "TMath::Power" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:1119:5: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:1215:67: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:1221:72: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:1227:68: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:1239:75: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:1245:78: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:1251:79: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:1257:79: warning: no header providing "o2::aod::evsel::kIsVertexTRDmatched" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:1263:75: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:1269:81: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:1275:84: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeNarrow" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:1472:56: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:2153:116: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/quarkoniaToHyperons.cxx:2874:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/tableReader.cxx` ```text PWGDQ/Tasks/tableReader.cxx:25:1: warning: included header EventSelectionParams.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:29:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:32:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:37:1: warning: included header DPLAlpideParam.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:39:1: warning: included header TGeoGlobalMagField.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:40:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:41:1: warning: included header TH3F.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:46:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:53:12: warning: using decl 'cout' is unused [misc-unused-using-decls] PWGDQ/Tasks/tableReader.cxx:54:12: warning: using decl 'endl' is unused [misc-unused-using-decls] PWGDQ/Tasks/tableReader.cxx:134:18: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:158:71: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:160:8: warning: constructor does not initialize these fields: fEventCut, fLastRun, fCCDB [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/tableReader.cxx:161:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:163:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:179:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:181:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:195:44: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:307:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:319:8: warning: constructor does not initialize these fields: fCCDB, fHistMan, fCurrentRun [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/tableReader.cxx:332:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:332:79: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:332:106: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:332:133: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:458:8: warning: constructor does not initialize these fields: fHistMan [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/tableReader.cxx:572:8: warning: constructor does not initialize these fields: ccdb, fCurrentRun, fPairCut [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/tableReader.cxx:589:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:675:8: warning: constructor does not initialize these fields: ccdb, fCurrentRun, fHistMan [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/tableReader.cxx:696:3: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:698:3: warning: no header providing "TH2D" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:716:3: warning: no header providing "o2::framework::NoBinningPolicy" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:1011:8: warning: constructor does not initialize these fields: fCurrentRun, ccdb, fHistMan [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/tableReader.cxx:1025:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:1066:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:1083:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:1138:22: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:1146:16: warning: no header providing "std::holds_alternative" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:1829:8: warning: constructor does not initialize these fields: fCurrentRun, ccdb, fValuesDilepton, fValuesHadron, fHistMan, fNHadronCutBit [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/tableReader.cxx:2058:8: warning: constructor does not initialize these fields: fValuesQuadruplet, fHistMan [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/tableReader.cxx:2112:10: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader.cxx:2121:19: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/tableReader_withAssoc.cxx` ```text PWGDQ/Tasks/tableReader_withAssoc.cxx:31:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:34:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:40:1: warning: included header OutputObjHeader.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:44:1: warning: included header TGeoGlobalMagField.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:46:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:47:1: warning: included header TH3F.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:51:1: warning: included header TRandom.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:61:1: warning: included header numeric is not used directly [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:62:1: warning: included header set is not used directly [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:271:8: warning: constructor does not initialize these fields: fEventCut, fCCDB, fCurrentRun [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/tableReader_withAssoc.cxx:294:79: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:294:106: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:294:133: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:301:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:307:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:346:44: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:382:27: warning: no header providing "std::atol" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:464:36: warning: no header providing "std::next" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:468:26: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:480:32: warning: no header providing "std::next" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:572:8: warning: constructor does not initialize these fields: fCCDB, fHistMan, fCurrentRun [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/tableReader_withAssoc.cxx:626:30: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Tasks/tableReader_withAssoc.cxx:830:8: warning: constructor does not initialize these fields: fCCDB, fHistMan, fCurrentRun [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/tableReader_withAssoc.cxx:877:29: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Tasks/tableReader_withAssoc.cxx:1041:8: warning: constructor does not initialize these fields: fPairCut, fPrefilterMask, fPrefilterCutBit [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/tableReader_withAssoc.cxx:1224:8: warning: constructor does not initialize these fields: fCurrentRun, fCCDB, fHistMan, fTrackFilterMask, fMuonFilterMask, fNCutsBarrel, fNCutsMuon, fNPairCuts, fEnableBarrelMixingHistos, fEnableBarrelHistos, fEnableMuonHistos, fEnableMuonMixingHistos [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/tableReader_withAssoc.cxx:1238:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:1319:3: warning: no header providing "o2::framework::NoBinningPolicy" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:1369:22: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:1377:16: warning: no header providing "std::holds_alternative" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:1658:23: warning: no header providing "o2::parameters::GRPLHCIFData" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:2382:8: warning: constructor does not initialize these fields: fCurrentRun, fCCDB, fHistMan, fNPairHistPrefixes, fLegAFilterMask, fLegBFilterMask, fLegCFilterMask, fCommonTrackCutMask, fNLegCuts, fNPairCuts, fNCommonTrackCuts [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/tableReader_withAssoc.cxx:2485:29: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGDQ/Tasks/tableReader_withAssoc.cxx:2509:9: warning: variable 'commonCutIdx' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Tasks/tableReader_withAssoc.cxx:2526:31: warning: no header providing "std::floor" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:2526:44: warning: no header providing "TMath::Log2" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:2547:9: warning: variable 'legAIdx' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Tasks/tableReader_withAssoc.cxx:2548:9: warning: variable 'legBIdx' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Tasks/tableReader_withAssoc.cxx:2549:9: warning: variable 'legCIdx' is not initialized [cppcoreguidelines-init-variables] PWGDQ/Tasks/tableReader_withAssoc.cxx:3112:8: warning: constructor does not initialize these fields: fCurrentRun, fNCuts, fNLegCuts, fNPairCuts, fNCommonTrackCuts, fTrackCutBitMap, fCCDB, fValuesDilepton, fValuesHadron, fHistMan [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/tableReader_withAssoc.cxx:3452:31: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGDQ/Tasks/tableReader_withAssoc.cxx:3793:8: warning: constructor does not initialize these fields: fCurrentRun, fCCDB, fValuesQuadruplet, fHistMan [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/tableReader_withAssoc.cxx:3859:10: warning: no header providing "Int_t" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/taskFwdTrackPid.cxx` ```text PWGDQ/Tasks/taskFwdTrackPid.cxx:16:1: warning: included header AnalysisCompositeCut.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:17:1: warning: included header AnalysisCut.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:18:1: warning: included header CutsLibrary.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:23:1: warning: included header MixingHandler.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:28:1: warning: included header EventSelectionParams.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:30:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:31:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:32:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:33:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:34:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:35:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:36:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:40:1: warning: included header DPLAlpideParam.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:42:1: warning: included header TGeoGlobalMagField.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:43:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:44:1: warning: included header TH3F.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:46:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:49:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:50:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:69:18: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:75:8: warning: constructor does not initialize these fields: fHistMan [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/taskFwdTrackPid.cxx:76:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:79:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:81:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:91:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:98:42: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:159:68: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:200:53: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:247:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:263:8: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskFwdTrackPid.cxx:271:134: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/taskJpsiHf.cxx` ```text PWGDQ/Tasks/taskJpsiHf.cxx:18:1: warning: included header HfHelper.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskJpsiHf.cxx:19:1: warning: included header CandidateReconstructionTables.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskJpsiHf.cxx:20:1: warning: included header CandidateSelectionTables.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/taskJpsiHf.cxx:61:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskJpsiHf.cxx:64:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskJpsiHf.cxx:67:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskJpsiHf.cxx:78:19: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskJpsiHf.cxx:81:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskJpsiHf.cxx:83:65: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskJpsiHf.cxx:104:39: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskJpsiHf.cxx:104:111: warning: no header providing "o2::constants::physics::MassJPsi" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskJpsiHf.cxx:110:37: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskJpsiHf.cxx:111:59: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskJpsiHf.cxx:111:103: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskJpsiHf.cxx:124:107: warning: no header providing "o2::constants::physics::MassD0" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskJpsiHf.cxx:166:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/taskMuonMchTrkEfficiency.cxx` ```text PWGDQ/Tasks/taskMuonMchTrkEfficiency.cxx:80:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskMuonMchTrkEfficiency.cxx:90:25: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskMuonMchTrkEfficiency.cxx:96:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskMuonMchTrkEfficiency.cxx:99:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskMuonMchTrkEfficiency.cxx:106:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskMuonMchTrkEfficiency.cxx:120:5: warning: no header providing "o2::framework::HistogramConfigSpec" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskMuonMchTrkEfficiency.cxx:120:47: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskMuonMchTrkEfficiency.cxx:132:39: warning: no header providing "THn" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskMuonMchTrkEfficiency.cxx:139:21: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/taskMuonMchTrkEfficiency.cxx:238:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGDQ/Tasks/v0selector.cxx` ```text PWGDQ/Tasks/v0selector.cxx:26:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:27:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:28:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:29:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:35:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:36:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:37:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:38:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:39:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:40:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:41:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:45:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:47:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:50:1: warning: included header map is not used directly [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:53:1: warning: included header utility is not used directly [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:59:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGDQ/Tasks/v0selector.cxx:68:18: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:74:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:123:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:149:17: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:161:34: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:185:18: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:233:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:234:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:237:52: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:258:74: warning: no header providing "TMath::PiOver2" is directly included [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:293:17: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:297:17: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:317:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:576:8: warning: constructor does not initialize these fields: fHistMan [cppcoreguidelines-pro-type-member-init] PWGDQ/Tasks/v0selector.cxx:585:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:585:13: warning: no header providing "THashList" is directly included [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:624:7: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:627:44: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:654:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGDQ/Tasks/v0selector.cxx:654:9: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:770:21: warning: no header providing "TObjArray" is directly included [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:771:10: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGDQ/Tasks/v0selector.cxx:798:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` ### PWGEM #### `PWGEM/Dilepton/Core/DielectronCut.cxx` ```text PWGEM/Dilepton/Core/DielectronCut.cxx:23:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DielectronCut.cxx:25:17: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DielectronCut.cxx:25:34: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DielectronCut.cxx:58:43: warning: no header providing "std::function" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Core/DielectronCut.h` ```text PWGEM/Dilepton/Core/DielectronCut.h:24:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DielectronCut.h:27:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DielectronCut.h:32:1: warning: included header string is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DielectronCut.h:36:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DielectronCut.h:37:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DielectronCut.h:44:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGEM/Dilepton/Core/DielectronCut.h:107:17: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DielectronCut.h:151:21: warning: no header providing "o2::math_utils::bringToPMPi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DielectronCut.h:152:32: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DielectronCut.h:159:20: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DielectronCut.h:409:52: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DielectronCut.h:423:29: warning: no header providing "o2::math_utils::bringTo02Pi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DielectronCut.h:488:30: warning: no header providing "std::function" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DielectronCut.h:564:26: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DielectronCut.h:564:43: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DielectronCut.h:645:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Core/Dilepton.h` ```text PWGEM/Dilepton/Core/Dilepton.h:35:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:36:1: warning: included header MlResponse.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:40:1: warning: included header GRPECSObject.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:44:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:51:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:56:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:64:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/Dilepton.h:65:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/Dilepton.h:66:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/Dilepton.h:67:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/Dilepton.h:68:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/Dilepton.h:69:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/Dilepton.h:70:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/Dilepton.h:71:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/Dilepton.h:73:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:78:34: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:90:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Core/Dilepton.h:93:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:111:16: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:112:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:112:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:114:51: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:117:16: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:134:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:164:18: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:250:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:270:18: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:308:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:312:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:312:45: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:314:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:326:42: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:332:3: warning: no header providing "TH2D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:334:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:424:42: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:428:42: warning: no header providing "o2::constants::physics::MassMuon" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:432:101: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:436:88: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:448:40: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:469:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:494:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:510:22: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:527:19: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:527:29: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:532:41: warning: no header providing "TList" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:533:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/Dilepton/Core/Dilepton.h:581:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:587:53: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:588:134: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:673:189: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:673:219: warning: no header providing "M_PI_2" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:748:12: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:898:17: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1024:84: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1024:132: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1044:31: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1066:68: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1138:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1138:68: warning: no header providing "o2::aod::cent::centFT0M" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1138:150: warning: no header providing "o2::aod::cent::centFT0A" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1138:232: warning: no header providing "o2::aod::cent::centFT0C" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1139:89: warning: no header providing "o2::aod::collision::numContrib" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1140:94: warning: no header providing "o2::aod::evsel::trackOccupancyInTimeRange" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1141:92: warning: no header providing "o2::aod::evsel::ft0cOccupancyInTimeRange" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1142:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1144:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1145:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1146:83: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1146:140: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1146:205: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1146:226: warning: no header providing "o2::aod::track::dcaXY" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1146:288: warning: no header providing "o2::aod::track::dcaZ" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1166:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1166:90: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1170:48: warning: no header providing "o2::aod::fwdtrack::trackType" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1170:139: warning: no header providing "o2::aod::fwdtrack::pt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1170:250: warning: no header providing "o2::aod::fwdtrack::eta" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1577:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1608:51: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1611:51: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1614:51: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1617:51: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1620:51: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1623:51: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1626:51: warning: no header providing "o2::aod::evsel::kIsVertexTRDmatched" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1629:51: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1638:51: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1641:51: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStrict" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1644:51: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1647:51: warning: no header providing "o2::aod::evsel::kNoCollInRofStrict" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1650:51: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1653:51: warning: no header providing "o2::aod::evsel::kIsGoodITSLayer3" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1656:51: warning: no header providing "o2::aod::evsel::kIsGoodITSLayer0123" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/Dilepton.h:1659:51: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Core/DileptonHadronMPC.h` ```text PWGEM/Dilepton/Core/DileptonHadronMPC.h:36:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:37:1: warning: included header MlResponse.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:40:1: warning: included header LHCConstants.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:41:1: warning: included header GRPECSObject.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:42:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:45:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:52:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:56:1: warning: included header array is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:58:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:65:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonHadronMPC.h:66:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonHadronMPC.h:67:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonHadronMPC.h:68:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonHadronMPC.h:69:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonHadronMPC.h:70:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonHadronMPC.h:71:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonHadronMPC.h:72:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonHadronMPC.h:74:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:79:34: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:92:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Core/DileptonHadronMPC.h:95:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:109:16: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:110:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:110:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:117:16: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:133:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:186:18: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:189:18: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:232:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:299:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:305:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:305:45: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:306:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:318:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:390:42: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:394:42: warning: no header providing "o2::constants::physics::MassMuon" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:400:86: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:403:44: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:403:150: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:420:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:445:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:510:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:523:44: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:524:42: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:525:52: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:631:12: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:753:17: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:770:22: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:914:29: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:985:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:985:68: warning: no header providing "o2::aod::cent::centFT0M" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:985:150: warning: no header providing "o2::aod::cent::centFT0A" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:985:232: warning: no header providing "o2::aod::cent::centFT0C" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:987:94: warning: no header providing "o2::aod::evsel::trackOccupancyInTimeRange" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:988:92: warning: no header providing "o2::aod::evsel::ft0cOccupancyInTimeRange" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:989:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:991:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:992:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:993:83: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:993:140: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:993:205: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:993:226: warning: no header providing "o2::aod::track::dcaXY" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:993:288: warning: no header providing "o2::aod::track::dcaZ" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:1013:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:1013:90: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:1017:48: warning: no header providing "o2::aod::fwdtrack::trackType" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:1017:139: warning: no header providing "o2::aod::fwdtrack::pt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:1017:250: warning: no header providing "o2::aod::fwdtrack::eta" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:1017:364: warning: no header providing "o2::aod::fwdtrack::phi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonHadronMPC.h:1387:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Core/DileptonMC.h` ```text PWGEM/Dilepton/Core/DileptonMC.h:32:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:33:1: warning: included header MlResponse.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:37:1: warning: included header GRPECSObject.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:41:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:44:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:47:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:58:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonMC.h:59:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonMC.h:60:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonMC.h:61:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonMC.h:62:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonMC.h:63:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonMC.h:64:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonMC.h:65:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonMC.h:67:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:75:36: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:91:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Core/DileptonMC.h:94:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:104:16: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:107:16: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:112:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:112:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:132:76: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:137:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:250:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:270:18: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:296:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:297:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:310:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:310:45: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:311:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:343:72: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:369:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:400:69: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:441:106: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/Dilepton/Core/DileptonMC.h:441:138: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/Dilepton/Core/DileptonMC.h:444:107: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/Dilepton/Core/DileptonMC.h:444:140: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/Dilepton/Core/DileptonMC.h:448:113: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/Dilepton/Core/DileptonMC.h:448:145: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/Dilepton/Core/DileptonMC.h:453:114: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/Dilepton/Core/DileptonMC.h:453:147: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/Dilepton/Core/DileptonMC.h:458:112: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/Dilepton/Core/DileptonMC.h:458:144: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/Dilepton/Core/DileptonMC.h:494:112: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:523:96: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/Dilepton/Core/DileptonMC.h:523:128: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/Dilepton/Core/DileptonMC.h:526:97: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/Dilepton/Core/DileptonMC.h:526:130: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/Dilepton/Core/DileptonMC.h:530:103: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/Dilepton/Core/DileptonMC.h:530:135: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/Dilepton/Core/DileptonMC.h:535:104: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/Dilepton/Core/DileptonMC.h:535:137: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/Dilepton/Core/DileptonMC.h:540:102: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/Dilepton/Core/DileptonMC.h:540:134: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/Dilepton/Core/DileptonMC.h:553:70: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:573:42: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:583:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:603:42: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:608:42: warning: no header providing "o2::constants::physics::MassMuon" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:616:40: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:616:78: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:637:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:662:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:677:19: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:677:29: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:753:12: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:880:82: warning: no header providing "o2::aod::fwdtrack::ForwardTrackTypeEnum" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:918:22: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:926:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:1493:17: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:1532:21: warning: no header providing "o2::math_utils::bringToPMPi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:1535:23: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:1538:66: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2483:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2484:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2485:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2485:33: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2485:54: warning: no header providing "o2::aod::track::dcaXY" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2485:116: warning: no header providing "o2::aod::track::dcaZ" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2506:48: warning: no header providing "o2::aod::fwdtrack::trackType" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2509:68: warning: no header providing "o2::aod::cent::centFT0M" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2509:150: warning: no header providing "o2::aod::cent::centFT0A" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2509:232: warning: no header providing "o2::aod::cent::centFT0C" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2510:79: warning: no header providing "o2::aod::collision::numContrib" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2511:94: warning: no header providing "o2::aod::evsel::trackOccupancyInTimeRange" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2512:92: warning: no header providing "o2::aod::evsel::ft0cOccupancyInTimeRange" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2515:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2515:92: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2520:77: warning: no header providing "o2::aod::mcparticle::pdgCode" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2524:3: warning: no header providing "o2::framework::PresliceUnsorted" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2552:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2641:51: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2644:51: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2647:51: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2650:51: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2653:51: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2656:51: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2659:51: warning: no header providing "o2::aod::evsel::kIsVertexTRDmatched" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2662:51: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2671:51: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2674:51: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStrict" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2677:51: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2680:51: warning: no header providing "o2::aod::evsel::kNoCollInRofStrict" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2683:51: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2686:51: warning: no header providing "o2::aod::evsel::kIsGoodITSLayer3" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2689:51: warning: no header providing "o2::aod::evsel::kIsGoodITSLayer0123" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonMC.h:2692:51: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Core/DileptonProducer.h` ```text PWGEM/Dilepton/Core/DileptonProducer.h:24:1: warning: included header EMFwdTrack.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:25:1: warning: included header EMTrack.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:27:1: warning: included header EventHistograms.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:32:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:33:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:34:1: warning: included header MlResponse.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:37:1: warning: included header LHCConstants.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:38:1: warning: included header GRPECSObject.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:39:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:42:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:47:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:49:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:50:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:53:1: warning: included header array is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:54:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:57:1: warning: included header ranges is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:63:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonProducer.h:64:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonProducer.h:65:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonProducer.h:66:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonProducer.h:67:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonProducer.h:68:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonProducer.h:69:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonProducer.h:70:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DileptonProducer.h:72:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:77:34: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:86:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Core/DileptonProducer.h:87:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:92:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:103:16: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:108:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:165:18: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:223:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:243:18: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:268:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:272:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:272:45: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:273:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:279:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:297:42: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:301:42: warning: no header providing "o2::constants::physics::MassMuon" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:317:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:342:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:428:12: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:510:17: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:539:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:539:78: warning: no header providing "o2::aod::cent::centFT0M" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:539:180: warning: no header providing "o2::aod::cent::centFT0A" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:539:282: warning: no header providing "o2::aod::cent::centFT0C" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:541:94: warning: no header providing "o2::aod::evsel::trackOccupancyInTimeRange" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:542:92: warning: no header providing "o2::aod::evsel::ft0cOccupancyInTimeRange" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:543:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:545:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:546:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:547:83: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:547:140: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:547:205: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:547:226: warning: no header providing "o2::aod::track::dcaXY" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:547:288: warning: no header providing "o2::aod::track::dcaZ" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:567:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:567:90: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:571:48: warning: no header providing "o2::aod::fwdtrack::trackType" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:571:139: warning: no header providing "o2::aod::fwdtrack::pt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:571:250: warning: no header providing "o2::aod::fwdtrack::eta" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DileptonProducer.h:765:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Core/DimuonCut.cxx` ```text PWGEM/Dilepton/Core/DimuonCut.cxx:22:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DimuonCut.cxx:126:40: warning: no header providing "std::function" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Core/DimuonCut.h` ```text PWGEM/Dilepton/Core/DimuonCut.h:23:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DimuonCut.h:26:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DimuonCut.h:29:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DimuonCut.h:30:1: warning: included header set is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DimuonCut.h:31:1: warning: included header string is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DimuonCut.h:32:1: warning: included header utility is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/DimuonCut.h:35:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/DimuonCut.h:43:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGEM/Dilepton/Core/DimuonCut.h:90:17: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DimuonCut.h:96:30: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DimuonCut.h:117:32: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DimuonCut.h:145:42: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DimuonCut.h:250:66: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DimuonCut.h:259:31: warning: no header providing "std::function" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/DimuonCut.h:294:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Core/EMEventCut.cxx` ```text PWGEM/Dilepton/Core/EMEventCut.cxx:20:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Core/EMEventCut.h` ```text PWGEM/Dilepton/Core/EMEventCut.h:20:1: warning: included header TriggerAliases.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/EMEventCut.h:24:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/EMEventCut.h:31:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGEM/Dilepton/Core/EMEventCut.h:209:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Core/EMTrackCut.cxx` ```text PWGEM/Dilepton/Core/EMTrackCut.cxx:23:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/EMTrackCut.cxx:25:17: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/EMTrackCut.cxx:25:34: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/EMTrackCut.cxx:97:45: warning: no header providing "std::function" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/EMTrackCut.cxx:115:30: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Core/EMTrackCut.h` ```text PWGEM/Dilepton/Core/EMTrackCut.h:19:1: warning: included header EMTrackUtilities.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/EMTrackCut.h:21:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/EMTrackCut.h:22:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/EMTrackCut.h:23:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/EMTrackCut.h:25:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/EMTrackCut.h:28:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/EMTrackCut.h:30:1: warning: included header string is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/EMTrackCut.h:32:1: warning: included header vector is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/EMTrackCut.h:34:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/EMTrackCut.h:41:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] PWGEM/Dilepton/Core/EMTrackCut.h:201:35: warning: no header providing "std::function" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/EMTrackCut.h:204:20: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/EMTrackCut.h:207:26: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/EMTrackCut.h:207:43: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/EMTrackCut.h:231:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Core/SingleTrackQC.h` ```text PWGEM/Dilepton/Core/SingleTrackQC.h:31:1: warning: included header MlResponse.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:36:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:38:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:42:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:45:1: warning: included header map is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:50:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/SingleTrackQC.h:51:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/SingleTrackQC.h:52:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/SingleTrackQC.h:53:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/SingleTrackQC.h:54:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/SingleTrackQC.h:55:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/SingleTrackQC.h:57:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:62:34: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:71:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Core/SingleTrackQC.h:74:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:86:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:86:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:92:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:122:18: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:183:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:192:18: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:220:18: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:230:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:234:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:234:45: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:235:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:245:13: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:247:44: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:254:66: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:255:124: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:257:90: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:303:174: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:327:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:347:88: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:350:141: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:358:40: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:377:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:402:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:421:22: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:487:12: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:558:21: warning: no header providing "o2::math_utils::bringTo02Pi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:653:21: warning: no header providing "o2::math_utils::bringToPMPi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:673:113: warning: no header providing "o2::aod::fwdtrack::ForwardTrackTypeEnum" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:863:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:864:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:865:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:865:83: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:865:140: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:865:221: warning: no header providing "o2::aod::track::tpcChi2NCl" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:865:284: warning: no header providing "o2::aod::track::itsChi2NCl" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:865:331: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:865:352: warning: no header providing "o2::aod::track::dcaXY" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:865:414: warning: no header providing "o2::aod::track::dcaZ" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:866:85: warning: no header providing "o2::aod::pidtpc::tpcNSigmaEl" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:870:48: warning: no header providing "o2::aod::fwdtrack::trackType" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:870:139: warning: no header providing "o2::aod::fwdtrack::pt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:870:250: warning: no header providing "o2::aod::fwdtrack::eta" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:870:364: warning: no header providing "o2::aod::fwdtrack::phi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:873:68: warning: no header providing "o2::aod::cent::centFT0M" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:873:150: warning: no header providing "o2::aod::cent::centFT0A" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:873:232: warning: no header providing "o2::aod::cent::centFT0C" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:874:89: warning: no header providing "o2::aod::collision::numContrib" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:875:94: warning: no header providing "o2::aod::evsel::trackOccupancyInTimeRange" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:876:92: warning: no header providing "o2::aod::evsel::ft0cOccupancyInTimeRange" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:877:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:897:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:922:51: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:925:51: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:928:51: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:931:51: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:934:51: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:937:51: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:940:51: warning: no header providing "o2::aod::evsel::kIsVertexTRDmatched" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:943:51: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:952:51: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:955:51: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStrict" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:958:51: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:961:51: warning: no header providing "o2::aod::evsel::kNoCollInRofStrict" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:964:51: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:967:51: warning: no header providing "o2::aod::evsel::kIsGoodITSLayer3" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:970:51: warning: no header providing "o2::aod::evsel::kIsGoodITSLayer0123" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQC.h:973:51: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Core/SingleTrackQCMC.h` ```text PWGEM/Dilepton/Core/SingleTrackQCMC.h:31:1: warning: included header MlResponse.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:36:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:38:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:39:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:42:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:45:1: warning: included header map is not used directly [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:50:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/SingleTrackQCMC.h:51:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/SingleTrackQCMC.h:52:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/SingleTrackQCMC.h:53:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/SingleTrackQCMC.h:54:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/SingleTrackQCMC.h:55:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/SingleTrackQCMC.h:56:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Core/SingleTrackQCMC.h:58:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:66:36: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:79:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Core/SingleTrackQCMC.h:82:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:92:16: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:98:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:98:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:104:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:191:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:199:18: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:225:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:226:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:236:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:236:45: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:237:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:246:72: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:251:13: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:253:44: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:261:70: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:277:101: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:383:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:415:40: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:415:78: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:437:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:462:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:530:12: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:598:82: warning: no header providing "o2::aod::fwdtrack::ForwardTrackTypeEnum" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:639:21: warning: no header providing "o2::math_utils::bringTo02Pi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:648:22: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:748:21: warning: no header providing "o2::math_utils::bringToPMPi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1115:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1116:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1117:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1117:49: warning: no header providing "o2::aod::track::tpcChi2NCl" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1117:112: warning: no header providing "o2::aod::track::itsChi2NCl" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1117:159: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1117:180: warning: no header providing "o2::aod::track::dcaXY" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1117:242: warning: no header providing "o2::aod::track::dcaZ" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1118:85: warning: no header providing "o2::aod::pidtpc::tpcNSigmaEl" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1122:48: warning: no header providing "o2::aod::fwdtrack::trackType" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1122:140: warning: no header providing "o2::aod::fwdtrack::phi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1125:68: warning: no header providing "o2::aod::cent::centFT0M" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1125:150: warning: no header providing "o2::aod::cent::centFT0A" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1125:232: warning: no header providing "o2::aod::cent::centFT0C" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1126:79: warning: no header providing "o2::aod::collision::numContrib" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1127:94: warning: no header providing "o2::aod::evsel::trackOccupancyInTimeRange" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1128:92: warning: no header providing "o2::aod::evsel::ft0cOccupancyInTimeRange" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1131:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1131:73: warning: no header providing "o2::aod::mcparticle::pdgCode" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1133:3: warning: no header providing "o2::framework::PresliceUnsorted" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1154:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1182:51: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1185:51: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1188:51: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1191:51: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1194:51: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1197:51: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1200:51: warning: no header providing "o2::aod::evsel::kIsVertexTRDmatched" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1203:51: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1212:51: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1215:51: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStrict" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1218:51: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1221:51: warning: no header providing "o2::aod::evsel::kNoCollInRofStrict" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1224:51: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1227:51: warning: no header providing "o2::aod::evsel::kIsGoodITSLayer3" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1230:51: warning: no header providing "o2::aod::evsel::kIsGoodITSLayer0123" is directly included [misc-include-cleaner] PWGEM/Dilepton/Core/SingleTrackQCMC.h:1233:51: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/DataModel/dileptonTables.h` ```text PWGEM/Dilepton/DataModel/dileptonTables.h:19:1: warning: included header Qvectors.h is not used directly [misc-include-cleaner] ``` #### `PWGEM/Dilepton/DataModel/lmeeMLTables.h` ```text PWGEM/Dilepton/DataModel/lmeeMLTables.h:12:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/DataModel/lmeeMLTables.h:14:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/DataModel/lmeeMLTables.h:17:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/DataModel/lmeeMLTables.h:21:1: warning: included header vector is not used directly [misc-include-cleaner] PWGEM/Dilepton/DataModel/lmeeMLTables.h:31:24: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/DataModel/lmeeMLTables.h:59:71: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/Converters/electronConverter2.cxx` ```text PWGEM/Dilepton/TableProducer/Converters/electronConverter2.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/Converters/electronConverter2.cxx:30:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/Converters/electronConverter3.cxx` ```text PWGEM/Dilepton/TableProducer/Converters/electronConverter3.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/Converters/electronConverter3.cxx:30:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/Converters/electronConverter4.cxx` ```text PWGEM/Dilepton/TableProducer/Converters/electronConverter4.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/Converters/electronConverter4.cxx:30:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/Converters/electronConverter4.cxx:32:31: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/Converters/electronConverter4.cxx:74:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/Converters/electronConverter5.cxx` ```text PWGEM/Dilepton/TableProducer/Converters/electronConverter5.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/Converters/electronConverter5.cxx:30:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/Converters/electronConverter5.cxx:32:31: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/Converters/electronConverter5.cxx:75:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/Converters/eventConverter2.cxx` ```text PWGEM/Dilepton/TableProducer/Converters/eventConverter2.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/Converters/eventConverter2.cxx:30:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/Converters/eventConverter3.cxx` ```text PWGEM/Dilepton/TableProducer/Converters/eventConverter3.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/Converters/eventConverter3.cxx:30:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/Converters/eventConverter4.cxx` ```text PWGEM/Dilepton/TableProducer/Converters/eventConverter4.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/Converters/eventConverter4.cxx:30:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/Converters/eventConverter4.cxx:49:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/Converters/eventNormConverter1.cxx` ```text PWGEM/Dilepton/TableProducer/Converters/eventNormConverter1.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/Converters/eventNormConverter1.cxx:30:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/Converters/eventNormConverter1.cxx:38:21: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/Converters/eventNormConverter1.cxx:39:21: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/Converters/mcParticleConverter1.cxx` ```text PWGEM/Dilepton/TableProducer/Converters/mcParticleConverter1.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/Converters/mcParticleConverter1.cxx:32:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/Converters/muonConverter1.cxx` ```text PWGEM/Dilepton/TableProducer/Converters/muonConverter1.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/Converters/muonConverter1.cxx:30:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/Converters/trackConverter1.cxx` ```text PWGEM/Dilepton/TableProducer/Converters/trackConverter1.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/Converters/trackConverter1.cxx:30:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/associateMCinfoDilepton.cxx` ```text PWGEM/Dilepton/TableProducer/associateMCinfoDilepton.cxx:20:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/associateMCinfoDilepton.cxx:22:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/associateMCinfoDilepton.cxx:26:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/associateMCinfoDilepton.cxx:45:82: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/associateMCinfoDilepton.cxx:50:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/associateMCinfoDilepton.cxx:60:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/associateMCinfoDilepton.cxx:68:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/associateMCinfoDilepton.cxx:72:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/associateMCinfoDilepton.cxx:74:39: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/associateMCinfoDilepton.cxx:74:78: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/associateMCinfoDilepton.cxx:138:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/associateMCinfoDilepton.cxx:142:13: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/associateMCinfoDilepton.cxx:146:14: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/associateMCinfoDilepton.cxx:164:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/associateMCinfoDilepton.cxx:326:26: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/associateMCinfoDilepton.cxx:718:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/createEMEventDilepton.cxx` ```text PWGEM/Dilepton/TableProducer/createEMEventDilepton.cxx:36:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/createEMEventDilepton.cxx:38:1: warning: included header iterator is not used directly [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/dielectronProducer.cxx` ```text PWGEM/Dilepton/TableProducer/dielectronProducer.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/dielectronProducer.cxx:25:101: warning: no header providing "o2::aod::pwgem::dilepton::utils::pairutil::DileptonPairType" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/dimuonProducer.cxx` ```text PWGEM/Dilepton/TableProducer/dimuonProducer.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/dimuonProducer.cxx:25:101: warning: no header providing "o2::aod::pwgem::dilepton::utils::pairutil::DileptonPairType" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/eventSelection.cxx` ```text PWGEM/Dilepton/TableProducer/eventSelection.cxx:21:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/eventSelection.cxx:30:54: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/eventSelection.cxx:31:56: warning: no header providing "o2::aod::Mults" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/eventSelection.cxx:31:68: warning: no header providing "o2::aod::CentFT0Ms" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/eventSelection.cxx:31:84: warning: no header providing "o2::aod::CentFT0As" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/eventSelection.cxx:31:100: warning: no header providing "o2::aod::CentFT0Cs" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/eventSelection.cxx:37:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/eventSelection.cxx:40:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/eventSelection.cxx:68:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/eventSelection.cxx:76:39: warning: no header providing "std::decay_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/eventSelection.cxx:86:70: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/eventSelection.cxx:90:69: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/eventSelection.cxx:94:73: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/eventSelection.cxx:98:81: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/eventSelection.cxx:102:79: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/eventSelection.cxx:106:89: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/eventSelection.cxx:118:52: warning: no header providing "triggerAliases" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/eventSelection.cxx:145:3: warning: no header providing "PROCESS_SWITCH_FULL" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/filterEoI.cxx` ```text PWGEM/Dilepton/TableProducer/filterEoI.cxx:20:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/filterEoI.cxx:37:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/filterEoI.cxx:38:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/filterEoI.cxx:42:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/filterEoI.cxx:43:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/filterEoI.cxx:46:7: warning: no header providing "getTaskOptionValue" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/filterEoI.cxx:53:40: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/filterEoI.cxx:53:79: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/filterEoI.cxx:70:13: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/filterEoI.cxx:78:22: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/filterEoI.cxx:170:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/qVectorDummyOTF.cxx` ```text PWGEM/Dilepton/TableProducer/qVectorDummyOTF.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/qVectorDummyOTF.cxx:30:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/qVectorDummyOTF.cxx:32:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/skimmerOTS.cxx` ```text PWGEM/Dilepton/TableProducer/skimmerOTS.cxx:19:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerOTS.cxx:23:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerOTS.cxx:38:8: warning: constructor does not initialize these fields: mRunNumber, ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/TableProducer/skimmerOTS.cxx:39:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerOTS.cxx:42:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerOTS.cxx:45:16: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerOTS.cxx:49:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerOTS.cxx:58:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerOTS.cxx:60:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerOTS.cxx:69:10: warning: no header providing "std::stringstream" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerOTS.cxx:76:43: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerOTS.cxx:76:112: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerOTS.cxx:78:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerOTS.cxx:137:7: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerOTS.cxx:140:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx` ```text PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:19:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:22:1: warning: included header PIDResponseITS.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:32:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:38:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:52:54: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:62:8: warning: constructor does not initialize these fields: mRunNumber, d_bz, ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:65:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:69:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:118:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:122:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:122:45: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:127:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:132:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:133:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:135:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:147:54: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:149:78: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:149:99: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:188:13: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:190:24: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:195:22: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:228:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:261:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:326:22: warning: no header providing "o2::dataformats::DCA" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:329:35: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:349:21: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:413:18: warning: no header providing "std::lower_bound" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:470:14: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:487:23: warning: no header providing "o2::math_utils::bringTo02Pi" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:560:24: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:600:109: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:600:133: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:603:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:656:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:919:8: warning: constructor does not initialize these fields: mRunNumber, d_bz, ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:958:28: warning: member 'max_mee_vec' of type 'const std::vector' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:1137:10: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:1150:19: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:1185:85: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:1399:37: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:1399:50: warning: no header providing "o2::soa::CombinationsFullIndexPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectron.cxx:1455:39: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx` ```text PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:19:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:22:1: warning: included header PIDResponseITS.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:32:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:38:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:41:1: warning: included header unordered_map is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:51:54: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:61:8: warning: constructor does not initialize these fields: mRunNumber, d_bz, ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:64:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:68:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:79:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:120:42: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:130:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:134:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:134:45: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:139:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:144:20: warning: no header providing "o2::dataformats::DCA" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:147:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:148:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:150:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:162:54: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:164:78: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:201:13: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:203:24: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:208:22: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:241:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:274:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:337:35: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:459:14: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:475:23: warning: no header providing "o2::math_utils::bringTo02Pi" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:488:20: warning: no header providing "std::lower_bound" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:562:24: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:602:10: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:623:17: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:640:204: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:640:228: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:643:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:663:37: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:663:50: warning: no header providing "o2::soa::CombinationsFullIndexPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:681:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:744:37: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx` ```text PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:18:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:23:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:25:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:31:1: warning: included header MatchGlobalFwd.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:33:1: warning: included header TrackParam.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:49:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:50:56: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:61:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:64:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:80:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:80:45: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:85:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:86:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:88:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:101:52: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:102:69: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:104:97: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:170:10: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:181:24: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:186:21: warning: no header providing "o2::math_utils::bringTo02Pi" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:195:5: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:203:73: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:237:22: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMFTTrack.cxx:279:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx` ```text PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:17:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:22:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:30:1: warning: included header MatchGlobalFwd.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:32:1: warning: included header TrackParam.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:36:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:53:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:54:56: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:66:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:70:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:103:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:104:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:109:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:109:45: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:110:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:112:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:140:20: warning: no header providing "o2::base::GeometryManager" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:166:36: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:166:67: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:174:80: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:174:101: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:213:130: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:267:22: warning: no header providing "o2::dataformats::GlobalFwdTrack" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:271:21: warning: no header providing "o2::math_utils::bringTo02Pi" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:276:24: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:287:37: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:302:5: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:393:49: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:393:64: warning: no header providing "std::atan" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:393:74: warning: no header providing "std::exp" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:429:21: warning: no header providing "o2::math_utils::bringToPMPi" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:431:14: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:431:24: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:468:24: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:637:102: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:686:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:702:24: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx` ```text PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:18:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:21:1: warning: included header PIDResponseITS.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:24:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:28:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:34:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:37:1: warning: included header unordered_map is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:48:54: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:56:8: warning: constructor does not initialize these fields: mRunNumber, d_bz, ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:59:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:63:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:89:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:89:45: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:93:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:98:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:100:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:111:54: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:113:78: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:113:98: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:149:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:182:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:231:22: warning: no header providing "o2::dataformats::DCA" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:261:14: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:275:23: warning: no header providing "o2::math_utils::bringTo02Pi" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:276:7: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:339:24: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:362:139: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:362:163: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:362:245: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/skimmerPrimaryTrack.cxx:394:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx` ```text PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:21:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:22:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:41:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:43:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:157:8: warning: constructor does not initialize these fields: mRunNumber, d_bz, ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:165:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:170:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:173:43: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:179:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:204:16: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:228:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:229:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:234:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:288:11: warning: no header providing "fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:313:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:351:9: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:449:157: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:462:17: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:486:5: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:544:11: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:619:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:666:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:701:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:767:5: warning: Value stored to 'fCounter' is never read [clang-analyzer-deadcode.DeadStores] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:771:106: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronML.cxx:838:5: warning: Value stored to 'fCounter' is never read [clang-analyzer-deadcode.DeadStores] ``` #### `PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx` ```text PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:18:1: warning: included header PairUtilities.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:19:1: warning: included header PCMUtilities.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:24:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:25:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:29:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:32:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:36:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:42:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:46:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:48:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:50:1: warning: included header array is not used directly [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:69:8: warning: constructor does not initialize these fields: mRunNumber, d_bz, ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:71:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:78:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:81:49: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:119:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:134:16: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:157:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:181:18: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:296:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:300:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:301:20: warning: no header providing "o2::dataformats::DCA" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:309:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:362:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:393:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:617:79: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:625:35: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:707:80: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:711:79: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:715:83: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:719:86: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:723:90: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:727:91: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:731:89: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:735:99: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:739:97: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStrict" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:743:94: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:747:92: warning: no header providing "o2::aod::evsel::kNoCollInRofStrict" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:751:98: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:755:87: warning: no header providing "o2::aod::evsel::kIsGoodITSLayer3" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:759:90: warning: no header providing "o2::aod::evsel::kIsGoodITSLayer0123" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:763:90: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:795:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:795:136: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:803:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:980:29: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:980:39: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:1011:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:1054:113: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:1054:122: warning: no header providing "std::atan" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/MCtemplates.cxx` ```text PWGEM/Dilepton/Tasks/MCtemplates.cxx:18:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:19:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:25:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:37:12: warning: using decl 'cout' is unused [misc-unused-using-decls] PWGEM/Dilepton/Tasks/MCtemplates.cxx:38:12: warning: using decl 'endl' is unused [misc-unused-using-decls] PWGEM/Dilepton/Tasks/MCtemplates.cxx:39:12: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:63:53: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:67:42: warning: no header providing "o2::aod::pidTPCFullEl" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:67:61: warning: no header providing "o2::aod::pidTPCFullMu" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:67:80: warning: no header providing "o2::aod::pidTPCFullPi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:68:42: warning: no header providing "o2::aod::pidTPCFullKa" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:68:61: warning: no header providing "o2::aod::pidTPCFullPr" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:69:42: warning: no header providing "o2::aod::pidTOFFullEl" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:69:61: warning: no header providing "o2::aod::pidTOFFullMu" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:69:80: warning: no header providing "o2::aod::pidTOFFullPi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:70:42: warning: no header providing "o2::aod::pidTOFFullKa" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:70:61: warning: no header providing "o2::aod::pidTOFFullPr" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:70:80: warning: no header providing "o2::aod::pidTOFbeta" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:80:18: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:102:71: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:104:8: warning: constructor does not initialize these fields: fHistMan, fEventCut [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/MCtemplates.cxx:105:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:106:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:114:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:124:44: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:177:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:183:8: warning: constructor does not initialize these fields: fHistMan [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/MCtemplates.cxx:205:12: warning: no header providing "std::unique_ptr" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:236:9: warning: no header providing "printf" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:332:28: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/MCtemplates.cxx:409:8: warning: constructor does not initialize these fields: fHistMan [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/MCtemplates.cxx:699:8: warning: no header providing "Int_t" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/associateMCcollision.cxx` ```text PWGEM/Dilepton/Tasks/associateMCcollision.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/associateMCcollision.cxx:29:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/associateMCcollision.cxx:31:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/associateMCcollision.cxx:31:45: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/associateMCcollision.cxx:33:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/associateMCcollision.cxx:45:114: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/associateMCcollision.cxx:54:22: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/associateMCcollision.cxx:55:7: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/associateMCcollision.cxx:69:29: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/associateMCcollision.cxx:69:39: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/associateMCcollision.cxx:69:56: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/associateMCcollision.cxx:71:3: warning: no header providing "o2::framework::PresliceUnsorted" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/associateMCcollision.cxx:71:90: warning: no header providing "o2::aod::mccollisionlabel::mcCollisionId" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/associateMCcollision.cxx:81:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/associateMCcollision.cxx:83:29: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/checkMCTemplate.cxx` ```text PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:19:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:25:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:33:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:39:1: warning: included header MatchGlobalFwd.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:41:1: warning: included header TrackParam.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:42:1: warning: included header TrackFwd.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:47:1: warning: included header map is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:51:1: warning: included header unordered_map is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:64:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:65:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:77:16: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:79:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:82:61: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:93:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:165:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:169:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:170:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:177:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:181:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:203:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:220:43: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:253:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:261:22: warning: no header providing "o2::base::GeometryManager" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:292:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:324:80: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:328:79: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:332:83: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:336:91: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:340:89: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:387:13: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:387:30: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:471:22: warning: no header providing "o2::dataformats::GlobalFwdTrack" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:476:21: warning: no header providing "o2::math_utils::bringTo02Pi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:490:18: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:522:47: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:522:62: warning: no header providing "std::atan" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:522:72: warning: no header providing "std::exp" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:553:21: warning: no header providing "o2::math_utils::bringToPMPi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:554:14: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:554:24: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:585:5: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:586:5: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:630:22: warning: no header providing "o2::dataformats::DCA" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:633:35: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:672:42: warning: no header providing "o2::constants::physics::kDPlus" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:675:42: warning: no header providing "o2::constants::physics::kD0" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:677:42: warning: no header providing "o2::constants::physics::kDS" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:679:42: warning: no header providing "o2::constants::physics::kLambdaCPlus" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:681:42: warning: no header providing "o2::constants::physics::kXiC0" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:683:42: warning: no header providing "o2::constants::physics::kXiCPlus" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:754:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/createResolutionMap.cxx` ```text PWGEM/Dilepton/Tasks/createResolutionMap.cxx:19:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:25:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:33:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:39:1: warning: included header MatchGlobalFwd.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:41:1: warning: included header TrackParam.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:47:1: warning: included header map is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:63:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:64:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:79:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:79:52: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:84:67: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:106:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:184:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:189:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:190:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:198:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:207:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:247:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:264:89: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:268:93: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:284:57: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:308:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:316:22: warning: no header providing "o2::base::GeometryManager" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:347:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:379:80: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:383:79: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:387:83: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:391:91: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:395:89: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:442:13: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:442:30: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:531:117: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:531:126: warning: no header providing "std::atan" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:559:22: warning: no header providing "o2::dataformats::GlobalFwdTrack" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:564:21: warning: no header providing "o2::math_utils::bringTo02Pi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:568:24: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:652:49: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:652:74: warning: no header providing "std::exp" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:661:23: warning: no header providing "o2::math_utils::bringToPMPi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:662:16: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:662:26: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:789:5: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:790:5: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:838:22: warning: no header providing "o2::dataformats::DCA" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:841:35: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/createResolutionMap.cxx:938:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/dielectron.cxx` ```text PWGEM/Dilepton/Tasks/dielectron.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/dielectron.cxx:26:75: warning: no header providing "o2::aod::pwgem::dilepton::utils::pairutil::DileptonPairType" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/dielectronHadronMPC.cxx` ```text PWGEM/Dilepton/Tasks/dielectronHadronMPC.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/dielectronHadronMPC.cxx:26:84: warning: no header providing "o2::aod::pwgem::dilepton::utils::pairutil::DileptonPairType" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/dielectronMC.cxx` ```text PWGEM/Dilepton/Tasks/dielectronMC.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/dielectronMC.cxx:26:77: warning: no header providing "o2::aod::pwgem::dilepton::utils::pairutil::DileptonPairType" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/dileptonPolarization.cxx` ```text PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:28:1: warning: included header GRPECSObject.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:34:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:39:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:43:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:62:8: warning: constructor does not initialize these fields: ccdb, mRunNumber [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:64:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:74:16: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:75:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:76:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:77:50: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:93:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:136:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:140:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:140:45: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:141:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:153:42: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:160:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:171:42: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:174:42: warning: no header providing "o2::constants::physics::MassMuon" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:254:101: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:306:19: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:306:29: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:317:44: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:330:106: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:331:129: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:331:159: warning: no header providing "M_PI_2" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:352:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:366:65: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:369:51: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:382:17: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:401:29: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:412:27: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:417:22: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:455:447: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:487:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:487:77: warning: no header providing "o2::aod::cent::centFT0C" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:488:94: warning: no header providing "o2::aod::evsel::trackOccupancyInTimeRange" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:489:92: warning: no header providing "o2::aod::evsel::ft0cOccupancyInTimeRange" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:490:35: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:496:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:497:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:498:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:498:89: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:637:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/dimuon.cxx` ```text PWGEM/Dilepton/Tasks/dimuon.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/dimuon.cxx:26:75: warning: no header providing "o2::aod::pwgem::dilepton::utils::pairutil::DileptonPairType" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/dimuonHadronMPC.cxx` ```text PWGEM/Dilepton/Tasks/dimuonHadronMPC.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/dimuonHadronMPC.cxx:26:84: warning: no header providing "o2::aod::pwgem::dilepton::utils::pairutil::DileptonPairType" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/dimuonMC.cxx` ```text PWGEM/Dilepton/Tasks/dimuonMC.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/dimuonMC.cxx:26:77: warning: no header providing "o2::aod::pwgem::dilepton::utils::pairutil::DileptonPairType" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx` ```text PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:26:1: warning: included header TriggerAliases.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:27:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:29:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:36:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:37:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:42:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:46:1: warning: included header TGeoGlobalMagField.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:47:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:50:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:56:12: warning: using decl 'cout' is unused [misc-unused-using-decls] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:57:12: warning: using decl 'endl' is unused [misc-unused-using-decls] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:58:12: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:99:18: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:117:71: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:120:8: warning: constructor does not initialize these fields: fHistMan, fEventCut [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:122:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:123:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:132:56: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:134:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:144:44: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:150:7: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:151:20: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:151:66: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:164:5: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:185:45: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:225:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:255:5: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:256:10: warning: no header providing "std::map" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:256:14: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:274:7: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:436:8: warning: constructor does not initialize these fields: fQASingleElectronList, fTrackCutsRes, fMCSignalRes, fHistManQA [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:448:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:480:20: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:480:31: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:497:31: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:524:12: warning: no header providing "std::unique_ptr" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:851:7: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1043:45: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1051:26: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1078:11: warning: no header providing "printf" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1156:38: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1376:8: warning: constructor does not initialize these fields: fCurrentRun, ccdb, fQADielectronList, fHistManQA [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1408:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1672:7: warning: no header providing "Bool_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1674:21: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx` ```text PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:19:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:20:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:44:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:48:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:61:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:63:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:67:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:71:53: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:76:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:77:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:89:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:125:19: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:125:29: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:131:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:157:44: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:157:97: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:161:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:177:63: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:217:17: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:228:21: warning: no header providing "o2::math_utils::bringToPMPi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:238:26: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:360:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:379:35: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:379:48: warning: no header providing "o2::soa::CombinationsFullIndexPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:386:35: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:386:48: warning: no header providing "o2::soa::CombinationsStrictlyUpperIndexPolicy" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/eventQC.cxx` ```text PWGEM/Dilepton/Tasks/eventQC.cxx:24:1: warning: included header PIDResponseITS.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:35:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:51:8: warning: constructor does not initialize these fields: mRunNumber, ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/eventQC.cxx:64:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:75:16: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:77:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:77:46: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:87:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:144:20: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:148:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:152:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:154:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:154:45: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:155:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:157:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:184:20: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:191:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:204:106: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:206:90: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:217:44: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:239:75: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:282:51: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:319:183: warning: no header providing "M_PI_2" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:347:88: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:436:49: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:439:49: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:442:49: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:445:49: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:448:49: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:451:49: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:454:49: warning: no header providing "o2::aod::evsel::kIsVertexTRDmatched" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:457:49: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:466:49: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:469:49: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStrict" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:472:49: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:475:49: warning: no header providing "o2::aod::evsel::kNoCollInRofStrict" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:478:49: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:481:49: warning: no header providing "o2::aod::evsel::kIsGoodITSLayer3" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:484:49: warning: no header providing "o2::aod::evsel::kIsGoodITSLayer0123" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:487:49: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:524:20: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:527:10: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:681:17: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:871:506: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:871:530: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:871:612: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/eventQC.cxx:1013:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx` ```text PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:23:1: warning: included header Task.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:27:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:36:33: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:36:43: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:50:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:60:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:79:37: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:79:48: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:87:57: warning: no header providing "fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:99:128: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:120:15: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:120:108: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:141:30: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:153:20: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:154:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:157:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:171:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:174:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:180:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:184:45: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:184:130: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:192:11: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:193:29: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:199:30: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:212:54: warning: no header providing "o2::mcgenstatus::getHepMCStatusCode" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:219:41: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:294:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:295:45: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:297:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:297:74: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:299:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:299:73: warning: no header providing "o2::aod::mcparticle::pdgCode" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:358:27: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:373:49: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:373:71: warning: no header providing "o2::soa::CombinationsFullIndexPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:386:49: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:386:71: warning: no header providing "o2::soa::CombinationsStrictlyUpperIndexPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeHFCocktail.cxx:418:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx` ```text PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:21:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:31:33: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:31:43: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:42:5: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:72:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:82:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:87:63: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:90:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:92:20: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:92:31: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:93:31: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:94:31: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:109:37: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:115:9: warning: no header providing "fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:141:21: warning: no header providing "o2::math_utils::bringToPMPi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:142:38: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:151:110: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:163:47: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:168:62: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:287:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:327:7: warning: Value stored to 'i' is never read [clang-analyzer-deadcode.DeadStores] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:336:29: warning: no header providing "o2::aod::McCollision" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:344:17: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:392:16: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:465:33: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:482:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:485:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:485:64: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:486:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:486:63: warning: no header providing "o2::aod::mcparticle::pdgCode" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:489:28: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:497:35: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:497:57: warning: no header providing "o2::soa::CombinationsFullIndexPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:513:29: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:513:51: warning: no header providing "o2::soa::CombinationsStrictlyUpperIndexPolicy" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/matchingMFT.cxx` ```text PWGEM/Dilepton/Tasks/matchingMFT.cxx:16:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:19:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:33:1: warning: included header MatchGlobalFwd.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:35:1: warning: included header TrackParam.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:40:1: warning: included header format is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:54:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/matchingMFT.cxx:55:29: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:55:39: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:55:129: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:56:38: warning: no header providing "o2::aod::FwdTracks" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:56:54: warning: no header providing "o2::aod::FwdTracksCov" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:56:73: warning: no header providing "o2::aod::McFwdTrackLabels" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:57:42: warning: no header providing "o2::aod::MFTTracks" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:57:58: warning: no header providing "o2::aod::McMFTTrackLabels" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:59:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:117:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:118:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:120:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:137:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:155:20: warning: no header providing "o2::base::GeometryManager" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:181:44: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:181:97: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:188:71: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:202:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:205:117: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:207:208: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:245:58: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:246:82: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:265:130: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:302:3: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:304:5: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:421:70: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:460:22: warning: no header providing "o2::dataformats::GlobalFwdTrack" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:467:21: warning: no header providing "o2::math_utils::bringTo02Pi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:477:24: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:484:27: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:484:37: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:531:47: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:531:62: warning: no header providing "std::atan" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:531:72: warning: no header providing "std::exp" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:541:21: warning: no header providing "o2::math_utils::bringToPMPi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:542:24: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:548:14: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:565:20: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:915:14: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:994:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:995:3: warning: no header providing "o2::framework::PresliceUnsorted" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:995:74: warning: no header providing "o2::aod::fwdtrack::matchMCHTrackId" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:996:69: warning: no header providing "o2::aod::fwdtrack::matchMFTTrackId" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:997:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:997:62: warning: no header providing "o2::aod::fwdtrack::collisionId" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:1002:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:1002:100: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:1004:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:1006:133: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:1047:104: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:1065:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/matchingMFT.cxx:1131:141: warning: no header providing "o2::aod::MFTTracksCov" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/mcParticlePredictionsOTF.cxx` ```text PWGEM/Dilepton/Tasks/mcParticlePredictionsOTF.cxx:27:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/mcParticlePredictionsOTF.cxx:29:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/mcParticlePredictionsOTF.cxx:32:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/mcParticlePredictionsOTF.cxx:35:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/mcParticlePredictionsOTF.cxx:38:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/mcParticlePredictionsOTF.cxx:41:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/mcParticlePredictionsOTF.cxx:41:59: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/mcParticlePredictionsOTF.cxx:42:16: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/mcParticlePredictionsOTF.cxx:42:55: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/mcParticlePredictionsOTF.cxx:50:21: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/mcParticlePredictionsOTF.cxx:51:21: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/mcParticlePredictionsOTF.cxx:57:23: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/mcParticlePredictionsOTF.cxx:58:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/prefilterDielectron.cxx` ```text PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:20:1: warning: included header EMTrack.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:21:1: warning: included header EventHistograms.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:24:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:25:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:30:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:36:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:37:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:39:1: warning: included header map is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:53:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:59:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:60:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:63:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:74:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:160:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:165:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:166:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:171:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:171:45: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:173:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:199:11: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:224:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:234:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:236:37: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:239:68: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:259:17: warning: no header providing "o2::analysis::MlResponseDielectronSingleTrack" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:307:12: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:344:27: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:346:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:347:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:348:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:348:70: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:351:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:351:68: warning: no header providing "o2::aod::cent::centFT0M" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:351:150: warning: no header providing "o2::aod::cent::centFT0A" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:351:232: warning: no header providing "o2::aod::cent::centFT0C" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:352:94: warning: no header providing "o2::aod::evsel::trackOccupancyInTimeRange" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:353:92: warning: no header providing "o2::aod::evsel::ft0cOccupancyInTimeRange" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:354:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:392:21: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:392:96: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:398:25: warning: no header providing "o2::math_utils::bringToPMPi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:400:24: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:414:59: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/prefilterDielectron.cxx:556:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/singleElectronQC.cxx` ```text PWGEM/Dilepton/Tasks/singleElectronQC.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/singleElectronQC.cxx:26:80: warning: no header providing "o2::aod::pwgem::dilepton::utils::pairutil::DileptonPairType" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/singleElectronQCMC.cxx` ```text PWGEM/Dilepton/Tasks/singleElectronQCMC.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/singleElectronQCMC.cxx:26:82: warning: no header providing "o2::aod::pwgem::dilepton::utils::pairutil::DileptonPairType" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/singleMuonQC.cxx` ```text PWGEM/Dilepton/Tasks/singleMuonQC.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/singleMuonQC.cxx:26:80: warning: no header providing "o2::aod::pwgem::dilepton::utils::pairutil::DileptonPairType" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/singleMuonQCMC.cxx` ```text PWGEM/Dilepton/Tasks/singleMuonQCMC.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/singleMuonQCMC.cxx:26:82: warning: no header providing "o2::aod::pwgem::dilepton::utils::pairutil::DileptonPairType" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/smearing.cxx` ```text PWGEM/Dilepton/Tasks/smearing.cxx:21:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/smearing.cxx:24:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/smearing.cxx:51:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/smearing.cxx:53:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/smearing.cxx:56:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/smearing.cxx:58:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/smearing.cxx:62:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/smearing.cxx:122:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/smearing.cxx:124:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/smearing.cxx:127:37: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/smearing.cxx:221:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/smearing.cxx:296:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/smearing.cxx:311:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/smearing.cxx:317:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/smearing.cxx:321:18: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/smearing.cxx:321:118: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/smearing.cxx:323:163: warning: no header providing "TMath::TwoPi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/smearing.cxx:326:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/studyDCAFitter.cxx` ```text PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:20:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:28:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:36:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:42:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:45:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:58:8: warning: constructor does not initialize these fields: mRunNumber, d_bz, ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:74:23: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:74:33: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:78:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:88:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:127:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:128:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:133:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:155:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:159:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:161:20: warning: no header providing "o2::dataformats::DCA" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:183:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:216:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:225:44: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:225:97: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:229:60: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:232:71: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:240:108: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:344:20: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:373:29: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:399:24: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:404:36: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:416:17: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:608:27: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:969:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/studyMCTruth.cxx` ```text PWGEM/Dilepton/Tasks/studyMCTruth.cxx:18:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:20:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:25:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:26:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:39:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:41:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:47:18: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:61:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:64:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:64:45: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:66:46: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:67:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:69:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:72:44: warning: no header providing "o2::constants::physics::MassMuon" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:79:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:84:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:87:87: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:96:71: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:155:52: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:155:80: warning: no header providing "o2::aod::fwdtrack::ForwardTrackTypeEnum" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:190:73: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:193:72: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:196:76: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:251:17: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:269:26: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:423:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:427:475: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/studyMCTruth.cxx:434:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx` ```text PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:17:1: warning: included header CutsLibrary.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:29:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:30:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:32:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:39:1: warning: included header TGeoGlobalMagField.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:40:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:41:1: warning: included header TH3F.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:46:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:53:12: warning: using decl 'cout' is unused [misc-unused-using-decls] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:54:12: warning: using decl 'endl' is unused [misc-unused-using-decls] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:108:18: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:123:71: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:125:8: warning: constructor does not initialize these fields: fEventCut, fLastRun, fCCDB [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:126:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:128:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:138:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:156:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:158:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:167:44: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:273:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:282:8: warning: constructor does not initialize these fields: fCCDB, fHistMan, fCurrentRun [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:295:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:295:79: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:295:106: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:295:133: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:298:21: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:543:113: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:683:8: warning: constructor does not initialize these fields: ccdb, fCurrentRun, fPairCut [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:699:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:790:8: warning: constructor does not initialize these fields: ccdb, fCurrentRun, fHistMan [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:815:3: warning: no header providing "o2::framework::NoBinningPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:945:8: warning: constructor does not initialize these fields: fCurrentRun, ccdb, fHistMan [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:949:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/tableReaderBarrel.cxx:1247:8: warning: no header providing "Int_t" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/taggingHFE.cxx` ```text PWGEM/Dilepton/Tasks/taggingHFE.cxx:20:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:28:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:36:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:42:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:58:8: warning: constructor does not initialize these fields: mRunNumber, d_bz, ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/taggingHFE.cxx:81:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:91:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:203:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:204:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:209:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:235:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:239:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:241:20: warning: no header providing "o2::dataformats::DCA" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:262:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:295:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:304:44: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:304:97: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:308:60: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:311:71: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:324:112: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:324:166: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:640:20: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:683:35: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:773:19: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:773:29: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:862:27: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:865:17: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:877:13: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:1039:21: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:1134:114: warning: no header providing "std::back_inserter" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/taggingHFE.cxx:1669:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx` ```text PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:16:1: warning: included header MCUtilities.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:18:1: warning: included header RCTSelectionFlags.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:20:1: warning: included header fwdtrackUtilities.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:21:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:23:1: warning: included header CollisionAssociationTables.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:25:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:29:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:31:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:33:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:36:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:42:1: warning: included header array is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:43:1: warning: included header map is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:44:1: warning: included header set is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:46:1: warning: included header tuple is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:47:1: warning: included header unordered_map is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:48:1: warning: included header utility is not used directly [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:58:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:59:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:68:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:70:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:71:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:77:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:81:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:93:89: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:94:81: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:95:150: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:95:203: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:180:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:210:30: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:210:40: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:212:29: warning: no header providing "o2::math_utils::bringTo02Pi" is directly included [misc-include-cleaner] PWGEM/Dilepton/Tasks/testBremsstrahlung.cxx:221:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Utils/EMFwdTrack.h` ```text PWGEM/Dilepton/Utils/EMFwdTrack.h:23:3: warning: constructor does not initialize these fields: fCharge [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Utils/EMFwdTrack.h:23:58: error: unknown type name 'int8_t' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EMFwdTrack.h:43:3: error: unknown type name 'int8_t' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EMFwdTrack.h:46:35: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EMFwdTrack.h:46:45: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EMFwdTrack.h:46:66: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EMFwdTrack.h:47:34: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EMFwdTrack.h:48:35: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EMFwdTrack.h:49:35: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EMFwdTrack.h:50:35: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EMFwdTrack.h:51:28: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EMFwdTrack.h:51:45: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EMFwdTrack.h:63:3: error: unknown type name 'int8_t' [clang-diagnostic-error] ``` #### `PWGEM/Dilepton/Utils/EMTrack.h` ```text PWGEM/Dilepton/Utils/EMTrack.h:18:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrack.h:25:55: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrack.h:53:40: warning: no header providing "std::log" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrack.h:53:50: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrack.h:53:60: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrack.h:53:96: warning: no header providing "std::cosh" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrack.h:53:125: warning: no header providing "std::sinh" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrack.h:55:40: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrack.h:56:40: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrack.h:58:33: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrack.h:185:21: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrack.h:186:22: warning: no header providing "std::atanh" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrack.h:187:22: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrack.h:189:20: warning: no header providing "M_PI" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Utils/EMTrackUtilities.h` ```text PWGEM/Dilepton/Utils/EMTrackUtilities.h:19:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrackUtilities.h:23:1: warning: included header string is not used directly [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrackUtilities.h:24:1: warning: included header vector is not used directly [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrackUtilities.h:30:26: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrackUtilities.h:72:17: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrackUtilities.h:72:27: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrackUtilities.h:81:22: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrackUtilities.h:127:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EMTrackUtilities.h:142:14: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Utils/EventHistograms.h` ```text PWGEM/Dilepton/Utils/EventHistograms.h:22:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Utils/EventHistograms.h:31:43: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EventHistograms.h:31:121: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EventHistograms.h:54:9: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EventHistograms.h:78:77: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EventHistograms.h:104:160: warning: no header providing "M_PI_2" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EventHistograms.h:112:153: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EventHistograms.h:171:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/EventHistograms.h:173:40: error: no member named 'evsel' in namespace 'o2::aod' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EventHistograms.h:176:40: error: no member named 'evsel' in namespace 'o2::aod' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EventHistograms.h:179:40: error: no member named 'evsel' in namespace 'o2::aod' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EventHistograms.h:182:40: error: no member named 'evsel' in namespace 'o2::aod' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EventHistograms.h:185:40: error: no member named 'evsel' in namespace 'o2::aod' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EventHistograms.h:188:40: error: no member named 'evsel' in namespace 'o2::aod' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EventHistograms.h:191:40: error: no member named 'evsel' in namespace 'o2::aod' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EventHistograms.h:194:40: error: no member named 'evsel' in namespace 'o2::aod' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EventHistograms.h:203:40: error: no member named 'evsel' in namespace 'o2::aod' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EventHistograms.h:206:40: error: no member named 'evsel' in namespace 'o2::aod' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EventHistograms.h:209:40: error: no member named 'evsel' in namespace 'o2::aod' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EventHistograms.h:212:40: error: no member named 'evsel' in namespace 'o2::aod' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EventHistograms.h:215:40: error: no member named 'evsel' in namespace 'o2::aod' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EventHistograms.h:218:40: error: no member named 'evsel' in namespace 'o2::aod' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EventHistograms.h:221:40: error: no member named 'evsel' in namespace 'o2::aod' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EventHistograms.h:224:40: error: no member named 'evsel' in namespace 'o2::aod' [clang-diagnostic-error] PWGEM/Dilepton/Utils/EventHistograms.h:242:10: warning: no header providing "std::array" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Utils/EventMixingHandler.h` ```text PWGEM/Dilepton/Utils/EventMixingHandler.h:19:1: warning: included header utility is not used directly [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Utils/MCUtilities.h` ```text PWGEM/Dilepton/Utils/MCUtilities.h:18:1: warning: included header AnalysisDataModel.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Utils/MCUtilities.h:21:1: warning: included header algorithm is not used directly [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Utils/MlResponseDielectronSingleTrack.h` ```text PWGEM/Dilepton/Utils/MlResponseDielectronSingleTrack.h:22:1: warning: included header map is not used directly [misc-include-cleaner] PWGEM/Dilepton/Utils/MlResponseDielectronSingleTrack.h:102:49: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/MlResponseDielectronSingleTrack.h:213:7: warning: constructor does not initialize these fields: mCachedIndexBinning [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Utils/MlResponseDielectronSingleTrack.h:225:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGEM/Dilepton/Utils/MlResponseDielectronSingleTrack.h:366:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Utils/MlResponseO2Track.h` ```text PWGEM/Dilepton/Utils/MlResponseO2Track.h:22:1: warning: included header map is not used directly [misc-include-cleaner] PWGEM/Dilepton/Utils/MlResponseO2Track.h:142:35: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/MlResponseO2Track.h:186:7: warning: constructor does not initialize these fields: mCachedIndexBinning [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Utils/MlResponseO2Track.h:198:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGEM/Dilepton/Utils/MlResponseO2Track.h:272:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Utils/MomentumSmearer.h` ```text PWGEM/Dilepton/Utils/MomentumSmearer.h:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Utils/MomentumSmearer.h:20:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Utils/MomentumSmearer.h:35:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Utils/MomentumSmearer.h:36:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Utils/MomentumSmearer.h:37:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Utils/MomentumSmearer.h:38:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/Dilepton/Utils/MomentumSmearer.h:40:7: warning: constructor does not initialize these fields: fResoND, fResoPt, fResoEta, fResoPhi_Pos, fResoPhi_Neg, fEff, fDCA, fTimestamp, fCcdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Utils/MomentumSmearer.h:47:3: warning: constructor does not initialize these fields: fResoND, fResoPt, fResoEta, fResoPhi_Pos, fResoPhi_Neg, fEff, fDCA, fTimestamp, fCcdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Utils/MomentumSmearer.h:62:3: warning: constructor does not initialize these fields: fResoND, fResoPt, fResoEta, fResoPhi_Pos, fResoPhi_Neg, fEff, fDCA, fTimestamp, fCcdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Utils/MomentumSmearer.h:79:3: warning: constructor does not initialize these fields: fResoND, fResoPt, fResoEta, fResoPhi_Pos, fResoPhi_Neg, fEff, fDCA, fTimestamp, fCcdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Utils/MomentumSmearer.h:94:3: warning: constructor does not initialize these fields: fResoND, fResoPt, fResoEta, fResoPhi_Pos, fResoPhi_Neg, fEff, fDCA, fTimestamp, fCcdb [cppcoreguidelines-pro-type-member-init] PWGEM/Dilepton/Utils/MomentumSmearer.h:115:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/Dilepton/Utils/MomentumSmearer.h:120:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/Dilepton/Utils/MomentumSmearer.h:125:20: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/Dilepton/Utils/MomentumSmearer.h:130:20: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/Dilepton/Utils/MomentumSmearer.h:138:5: warning: no header providing "TAxis" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/MomentumSmearer.h:142:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/Dilepton/Utils/MomentumSmearer.h:178:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/Dilepton/Utils/MomentumSmearer.h:219:21: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/Dilepton/Utils/MomentumSmearer.h:221:16: warning: no header providing "TObject" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/MomentumSmearer.h:236:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/Dilepton/Utils/MomentumSmearer.h:244:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/Dilepton/Utils/MomentumSmearer.h:249:20: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/Dilepton/Utils/MomentumSmearer.h:254:24: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/Dilepton/Utils/MomentumSmearer.h:259:24: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/Dilepton/Utils/MomentumSmearer.h:294:21: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/Dilepton/Utils/MomentumSmearer.h:307:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/Dilepton/Utils/MomentumSmearer.h:350:21: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/Dilepton/Utils/MomentumSmearer.h:363:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/Dilepton/Utils/MomentumSmearer.h:486:20: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/Dilepton/Utils/MomentumSmearer.h:498:20: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/Dilepton/Utils/MomentumSmearer.h:516:20: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/Dilepton/Utils/MomentumSmearer.h:579:16: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/MomentumSmearer.h:584:21: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ``` #### `PWGEM/Dilepton/Utils/PairUtilities.h` ```text PWGEM/Dilepton/Utils/PairUtilities.h:25:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Utils/PairUtilities.h:26:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/Dilepton/Utils/PairUtilities.h:71:65: warning: no header providing "ROOT::Math::MatRepSym" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/PairUtilities.h:79:15: warning: no header providing "ROOT::Math::PxPyPzEVector" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/PairUtilities.h:87:15: warning: no header providing "ROOT::Math::XYZVectorF" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/PairUtilities.h:97:16: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/PairUtilities.h:126:185: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/PairUtilities.h:266:32: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/PairUtilities.h:335:15: warning: no header providing "std::acos" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/PairUtilities.h:343:25: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/PairUtilities.h:346:15: warning: no header providing "std::asin" is directly included [misc-include-cleaner] PWGEM/Dilepton/Utils/PairUtilities.h:364:37: warning: no header providing "TMath::Sign" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Core/CutsLibrary.cxx` ```text PWGEM/PhotonMeson/Core/CutsLibrary.cxx:301:15: warning: unused local variable 'nameStr' of type 'std::string' (aka 'basic_string') [bugprone-unused-local-non-trivial-variable] ``` #### `PWGEM/PhotonMeson/Core/CutsLibrary.h` ```text PWGEM/PhotonMeson/Core/CutsLibrary.h:18:1: warning: included header string is not used directly [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Core/DalitzEECut.h` ```text PWGEM/PhotonMeson/Core/DalitzEECut.h:36:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] ``` #### `PWGEM/PhotonMeson/Core/DiphotonHadronMPC.h` ```text PWGEM/PhotonMeson/Core/DiphotonHadronMPC.h:65:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/DiphotonHadronMPC.h:66:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/DiphotonHadronMPC.h:67:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/DiphotonHadronMPC.h:68:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/DiphotonHadronMPC.h:69:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/DiphotonHadronMPC.h:70:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/DiphotonHadronMPC.h:71:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/DiphotonHadronMPC.h:72:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/DiphotonHadronMPC.h:73:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/DiphotonHadronMPC.h:88:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz [cppcoreguidelines-pro-type-member-init] ``` #### `PWGEM/PhotonMeson/Core/EMPhotonEventCut.cxx` ```text PWGEM/PhotonMeson/Core/EMPhotonEventCut.cxx:19:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Core/EMPhotonEventCut.h` ```text PWGEM/PhotonMeson/Core/EMPhotonEventCut.h:21:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/EMPhotonEventCut.h:55:37: warning: no header providing "kTVXinEMC" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Core/EMPhotonEventCut.h:58:37: warning: no header providing "kEMC7" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Core/EMPhotonEventCut.h:58:67: warning: no header providing "kDMC7" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Core/EMPhotonEventCut.h:73:3: warning: no header providing "ClassDef" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx` ```text PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:36:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:37:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:38:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:39:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:40:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:41:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:42:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:43:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:44:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:45:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:257:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:258:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:261:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:262:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:263:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:264:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:265:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:266:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:283:37: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:284:37: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:288:47: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:289:48: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:290:48: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:309:106: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:309:246: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:339:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:340:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:341:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:430:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:431:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:432:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:433:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:434:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:435:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:436:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:437:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:447:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:448:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:449:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:450:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:453:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:457:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:458:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:503:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:503:110: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:504:59: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:505:94: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:510:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:514:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:525:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:532:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:533:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:534:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:599:55: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:599:104: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:600:54: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:600:99: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:601:56: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:601:111: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:602:59: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:602:108: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:603:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:603:103: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:604:60: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:604:115: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:615:68: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:615:169: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:643:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:644:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:649:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:651:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:653:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:656:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:658:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:660:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:667:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:668:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:671:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:672:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:703:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:718:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `PWGEM/PhotonMeson/Core/HistogramsLibrary.h` ```text PWGEM/PhotonMeson/Core/HistogramsLibrary.h:55:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:57:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:60:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:63:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:66:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:69:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:72:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:75:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:78:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:81:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:82:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:83:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:84:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:85:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:86:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:87:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:88:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:89:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:92:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:93:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:94:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:95:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:96:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:97:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:100:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:101:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:102:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:103:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:105:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:106:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:107:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:109:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:110:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:119:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:120:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:121:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:122:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:123:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:124:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:127:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:130:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:131:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:132:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:133:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:134:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:135:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:136:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:137:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:138:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:139:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:140:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:141:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:142:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:143:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:144:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:145:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:146:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:148:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:149:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:150:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:151:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:152:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:153:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:154:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:155:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:156:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:157:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:158:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:159:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:160:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:161:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:162:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:163:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:164:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:165:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:166:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:168:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:169:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:170:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:171:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:172:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:173:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:174:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:175:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:176:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:177:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:178:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:179:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:180:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:181:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:182:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:183:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:184:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:185:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:186:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:187:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:188:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:189:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:190:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:191:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:192:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:193:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:194:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:195:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:197:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:198:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:199:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:200:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:201:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:202:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:203:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:206:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:207:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:208:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:209:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:210:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:212:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:213:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:214:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:215:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:216:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:218:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:219:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:220:5: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Core/HistogramsLibrary.h:222:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `PWGEM/PhotonMeson/Core/PairCut.cxx` ```text PWGEM/PhotonMeson/Core/PairCut.cxx:19:1: warning: no header providing "ClassImp" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Core/PairCut.h` ```text PWGEM/PhotonMeson/Core/PairCut.h:19:1: warning: included header set is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Core/PairCut.h:20:1: warning: included header vector is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Core/PairCut.h:21:1: warning: included header utility is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Core/PairCut.h:22:1: warning: included header string is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Core/PairCut.h:23:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Core/PairCut.h:24:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Core/PairCut.h:27:1: warning: included header TMath.h is not used directly [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Core/PhotonHBT.h` ```text PWGEM/PhotonMeson/Core/PhotonHBT.h:66:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/PhotonHBT.h:67:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/PhotonHBT.h:68:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/PhotonHBT.h:69:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/PhotonHBT.h:70:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/PhotonHBT.h:71:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/PhotonHBT.h:72:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/PhotonHBT.h:81:8: warning: constructor does not initialize these fields: mRunNumber [cppcoreguidelines-pro-type-member-init] PWGEM/PhotonMeson/Core/PhotonHBT.h:336:180: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Core/PhotonHBT.h:337:179: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ``` #### `PWGEM/PhotonMeson/Core/Pi0EtaToGammaGamma.h` ```text PWGEM/PhotonMeson/Core/Pi0EtaToGammaGamma.h:48:1: warning: included header Array2D.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Core/Pi0EtaToGammaGamma.h:73:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz, emcalGeom [cppcoreguidelines-pro-type-member-init] ``` #### `PWGEM/PhotonMeson/Core/Pi0EtaToGammaGammaMC.h` ```text PWGEM/PhotonMeson/Core/Pi0EtaToGammaGammaMC.h:45:1: warning: included header Array2D.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Core/Pi0EtaToGammaGammaMC.h:68:8: warning: constructor does not initialize these fields: f1fd_k0s_to_pi0, ccdb, mRunNumber, d_bz [cppcoreguidelines-pro-type-member-init] ``` #### `PWGEM/PhotonMeson/Core/TaggingPi0.h` ```text PWGEM/PhotonMeson/Core/TaggingPi0.h:66:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/TaggingPi0.h:67:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/TaggingPi0.h:68:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/TaggingPi0.h:69:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/TaggingPi0.h:70:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/TaggingPi0.h:71:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/TaggingPi0.h:72:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/TaggingPi0.h:73:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/TaggingPi0.h:74:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/TaggingPi0.h:95:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz [cppcoreguidelines-pro-type-member-init] ``` #### `PWGEM/PhotonMeson/Core/TaggingPi0MC.h` ```text PWGEM/PhotonMeson/Core/TaggingPi0MC.h:64:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/TaggingPi0MC.h:65:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/TaggingPi0MC.h:66:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/TaggingPi0MC.h:67:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/TaggingPi0MC.h:68:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/TaggingPi0MC.h:69:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/TaggingPi0MC.h:70:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/TaggingPi0MC.h:71:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGEM/PhotonMeson/Core/TaggingPi0MC.h:98:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz, f1fd_k0s_to_pi0 [cppcoreguidelines-pro-type-member-init] ``` #### `PWGEM/PhotonMeson/Core/V0PhotonCut.cxx` ```text PWGEM/PhotonMeson/Core/V0PhotonCut.cxx:18:1: warning: included header Array2D.h is not used directly [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Core/V0PhotonCut.h` ```text PWGEM/PhotonMeson/Core/V0PhotonCut.h:43:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] ``` #### `PWGEM/PhotonMeson/DataModel/bcWiseTables.h` ```text PWGEM/PhotonMeson/DataModel/bcWiseTables.h:71:64: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/DataModel/bcWiseTables.h:73:62: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/DataModel/bcWiseTables.h:77:116: warning: no header providing "std::nextafter" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/DataModel/bcWiseTables.h:91:44: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/DataModel/bcWiseTables.h:100:56: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/DataModel/bcWiseTables.h:118:164: warning: no header providing "std::cosh" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/DataModel/bcWiseTables.h:145:38: warning: no header providing "int32_t" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/DataModel/mcV0Tables.h` ```text PWGEM/PhotonMeson/DataModel/mcV0Tables.h:25:19: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/DataModel/mcV0Tables.h:49:46: warning: no header providing "int16_t" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx` ```text PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:22:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:26:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:37:80: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:50:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:59:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:64:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:66:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:68:39: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:68:78: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:86:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:89:27: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:94:20: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:94:25: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:94:69: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:94:116: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:94:125: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:98:41: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:111:15: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:115:13: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:119:14: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:141:12: warning: no header providing "std::fill" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:150:90: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:152:24: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:187:80: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:187:90: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:202:122: warning: no header providing "std::tan" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:202:135: warning: no header providing "std::atan" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:202:145: warning: no header providing "std::exp" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/associateMCinfoPhoton.cxx:457:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx` ```text PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:29:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:44:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:44:37: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:45:101: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:46:30: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:46:53: warning: no header providing "o2::aod::Timestamps" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:46:106: warning: no header providing "o2::aod::Run3MatchedToBCSparse" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:48:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:52:46: warning: no header providing "o2::aod::Calos" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:55:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:62:3: warning: no header providing "o2::framework::PresliceUnsorted" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:63:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:65:51: warning: no header providing "o2::aod::calo::bcId" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:67:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:81:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:83:16: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:83:68: warning: no header providing "o2::aod::rctsel::kFT0Bad" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:83:90: warning: no header providing "o2::aod::rctsel::kEMCBad" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:88:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:91:37: warning: no header providing "o2::aod::calo::caloType" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:93:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:93:48: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:95:12: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:98:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:101:66: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:102:11: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:104:24: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:104:29: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:153:38: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:154:38: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:156:38: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:165:76: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:170:12: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:208:46: warning: no header providing "kTVXinEMC" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:221:5: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:241:71: warning: no header providing "o2::constants::lhc::LHCRevFreq" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:242:23: warning: no header providing "std::log" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:267:48: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:295:78: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:326:23: warning: no header providing "o2::emcal::InvalidPositionException" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:335:75: warning: no header providing "o2::aod::FT0s" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:354:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:356:17: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:356:63: warning: no header providing "o2::aod::mccollision::bcId" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:357:64: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:378:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/TableProducer/createEMEventPhoton.cxx` ```text PWGEM/PhotonMeson/TableProducer/createEMEventPhoton.cxx:27:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createEMEventPhoton.cxx:28:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createEMEventPhoton.cxx:29:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createEMEventPhoton.cxx:67:8: warning: constructor does not initialize these fields: mRunNumber [cppcoreguidelines-pro-type-member-init] ``` #### `PWGEM/PhotonMeson/TableProducer/createPCM.cxx` ```text PWGEM/PhotonMeson/TableProducer/createPCM.cxx:51:91: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:55:8: warning: constructor does not initialize these fields: mRunNumber, d_bz, ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:58:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:63:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:66:43: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:73:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:108:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:109:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:116:17: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:116:28: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:119:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:169:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:192:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:238:24: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:315:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:335:13: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:335:30: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:388:182: warning: no header providing "o2::aod::track::dcaXY" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:391:23: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:396:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:404:10: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:458:26: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:478:47: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/createPCM.cxx:527:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/TableProducer/photonconversionbuilder.cxx` ```text PWGEM/PhotonMeson/TableProducer/photonconversionbuilder.cxx:96:8: warning: constructor does not initialize these fields: mRunNumber, d_bz, maxSnp, maxStep, ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/PhotonMeson/TableProducer/photonconversionbuilder.cxx:529:5: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] ``` #### `PWGEM/PhotonMeson/TableProducer/skimmerDalitzEE.cxx` ```text PWGEM/PhotonMeson/TableProducer/skimmerDalitzEE.cxx:22:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerDalitzEE.cxx:49:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz [cppcoreguidelines-pro-type-member-init] PWGEM/PhotonMeson/TableProducer/skimmerDalitzEE.cxx:62:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerDalitzEE.cxx:67:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerDalitzEE.cxx:103:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerDalitzEE.cxx:106:57: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerDalitzEE.cxx:112:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerDalitzEE.cxx:115:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerDalitzEE.cxx:165:13: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerDalitzEE.cxx:165:30: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerDalitzEE.cxx:182:5: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerDalitzEE.cxx:270:42: warning: no header providing "o2::soa::CombinationsFullIndexPolicy" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerDalitzEE.cxx:275:21: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerDalitzEE.cxx:289:150: warning: no header providing "TMath::TwoPi" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerDalitzEE.cxx:296:24: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerDalitzEE.cxx:300:42: warning: no header providing "o2::soa::CombinationsStrictlyUpperIndexPolicy" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerDalitzEE.cxx:328:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerDalitzEE.cxx:328:183: warning: no header providing "o2::aod::pidtpc::tpcNSigmaEl" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerDalitzEE.cxx:355:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx` ```text PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:42:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:47:1: warning: included header HelixHelper.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:50:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:52:1: warning: included header TrackFwd.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:54:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:55:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:56:1: warning: included header TVector2.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:64:74: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:64:90: warning: no header providing "o2::aod::pidTPCFullEl" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:64:109: warning: no header providing "o2::aod::pidTPCFullPi" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:67:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:70:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:84:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:90:61: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:97:19: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:109:12: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:118:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:124:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:127:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:129:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:138:5: warning: no header providing "TAxis" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:138:40: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:179:5: warning: no header providing "KFParticle" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:238:5: warning: no header providing "KFPTrack" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:250:5: warning: no header providing "KFPVertex" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:286:17: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:302:19: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:350:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:488:25: warning: no header providing "sqrt" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversion.cxx:488:30: warning: no header providing "pow" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/TableProducer/skimmerGammaConversionTruthOnlyMc.cxx` ```text PWGEM/PhotonMeson/TableProducer/skimmerGammaConversionTruthOnlyMc.cxx:23:1: warning: included header TVector3.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversionTruthOnlyMc.cxx:35:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversionTruthOnlyMc.cxx:38:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversionTruthOnlyMc.cxx:44:49: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversionTruthOnlyMc.cxx:54:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversionTruthOnlyMc.cxx:68:9: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversionTruthOnlyMc.cxx:83:23: warning: no header providing "sqrt" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerGammaConversionTruthOnlyMc.cxx:83:28: warning: no header providing "pow" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/TableProducer/skimmerPHOS.cxx` ```text PWGEM/PhotonMeson/TableProducer/skimmerPHOS.cxx:28:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPHOS.cxx:31:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPHOS.cxx:35:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPHOS.cxx:36:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPHOS.cxx:38:44: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPHOS.cxx:38:93: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPHOS.cxx:49:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx` ```text PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:17:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:19:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:25:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:31:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:33:1: warning: included header map is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:45:54: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:49:64: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:49:96: warning: no header providing "o2::aod::pidTPCFullEl" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:49:115: warning: no header providing "o2::aod::pidTPCFullPi" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:49:134: warning: no header providing "o2::aod::pidTOFFullEl" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:49:153: warning: no header providing "o2::aod::pidTOFFullPi" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:49:172: warning: no header providing "o2::aod::pidTOFbeta" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:51:65: warning: no header providing "o2::aod::mcTPCTuneOnData" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:54:8: warning: constructor does not initialize these fields: mRunNumber, d_bz, ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:58:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:62:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:96:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:96:45: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:97:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:101:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:104:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:118:52: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:119:76: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:119:97: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:172:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:197:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:263:21: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:338:20: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:404:48: warning: no header providing "o2::soa::CombinationsFullIndexPolicy" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:412:21: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:452:42: warning: no header providing "o2::soa::CombinationsStrictlyUpperIndexPolicy" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:473:177: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:473:201: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:473:238: warning: no header providing "o2::aod::track::dcaXY" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:473:282: warning: no header providing "o2::aod::track::dcaZ" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:475:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:523:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx` ```text PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:47:8: warning: constructor does not initialize these fields: mCCDB [cppcoreguidelines-pro-type-member-init] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:49:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:50:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:53:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:87:3: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:124:25: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:124:36: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:125:22: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:157:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:159:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:172:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:190:27: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:190:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:190:59: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:191:79: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:212:53: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:213:53: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:214:53: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:215:53: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:219:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:220:20: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:220:99: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:225:97: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:230:103: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:267:31: warning: no header providing "kGamma" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:333:16: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:333:54: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:337:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Tasks/Converters/electronFromDalitzConverter1.cxx` ```text PWGEM/PhotonMeson/Tasks/Converters/electronFromDalitzConverter1.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/Converters/electronFromDalitzConverter1.cxx:30:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Tasks/Converters/pcmConverter1.cxx` ```text PWGEM/PhotonMeson/Tasks/Converters/pcmConverter1.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/Converters/pcmConverter1.cxx:30:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx` ```text PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:22:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:31:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:38:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:39:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:40:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:41:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:45:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:104:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:123:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:137:69: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:142:27: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:143:43: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:144:45: warning: no header providing "o2::constants::physics::MassDeuteron" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:147:48: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:169:61: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:191:36: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:191:46: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:223:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:225:144: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:230:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:231:24: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:262:24: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:332:34: warning: no header providing "o2::soa::Attach" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:356:69: warning: no header providing "kTVXinEMC" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:357:71: warning: no header providing "kEMC7" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:357:126: warning: no header providing "kEG1" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:357:180: warning: no header providing "kEG2" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:423:111: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:479:61: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:506:57: warning: no header providing "o2::aod::pwgem::photonmeson::photonpair::kPCMPCM" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:508:64: warning: no header providing "o2::aod::pwgem::photonmeson::photonpair::kEMCEMC" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Tasks/MaterialBudget.cxx` ```text PWGEM/PhotonMeson/Tasks/MaterialBudget.cxx:138:18: warning: member 'axisPt' of type 'const AxisSpec' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGEM/PhotonMeson/Tasks/MaterialBudget.cxx:1281:7: warning: Value stored to 'isFirst' is never read [clang-analyzer-deadcode.DeadStores] ``` #### `PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx` ```text PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:40:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:110:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:111:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:112:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:113:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:128:39: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:131:49: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:136:49: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:151:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:154:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:157:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:169:33: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:171:35: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:171:133: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:172:91: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:184:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:241:125: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:241:160: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:242:124: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:242:159: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:256:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:257:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:287:22: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:289:11: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:300:117: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:382:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:416:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:417:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:421:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:426:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:431:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:432:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx` ```text PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:22:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:36:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:37:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:38:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:39:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:43:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:93:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:109:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:119:16: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:151:69: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:156:27: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:160:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:162:139: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:164:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:165:24: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:177:24: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:223:42: warning: no header providing "kTVXinEMC" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:224:44: warning: no header providing "kEMC7" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:224:72: warning: no header providing "kDMC7" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:224:100: warning: no header providing "kEG1" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:224:127: warning: no header providing "kEG2" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:232:79: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:234:85: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:284:85: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/OmegaMesonEMC.cxx:327:63: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Tasks/PhotonHBTPCMPCM.cxx` ```text PWGEM/PhotonMeson/Tasks/PhotonHBTPCMPCM.cxx:19:1: warning: included header AnalysisDataModel.h is not used directly [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Tasks/Pi0EtaToGammaGammaPCMDalitzEE.cxx` ```text PWGEM/PhotonMeson/Tasks/Pi0EtaToGammaGammaPCMDalitzEE.cxx:21:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx` ```text PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:124:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:125:29: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:134:39: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:136:43: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:154:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:157:30: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:163:32: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:165:39: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:165:136: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:267:121: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:267:156: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:268:120: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:268:155: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:269:123: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:299:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:300:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:318:13: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:319:13: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:320:13: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:323:13: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:326:11: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:327:11: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx` ```text PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:127:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:128:29: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:129:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:138:39: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:140:43: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:153:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:156:30: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:159:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:166:32: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:168:39: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:168:136: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:169:95: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:268:121: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:268:156: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:269:120: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:269:155: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:270:123: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:290:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:291:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:303:11: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:304:11: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:305:11: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:330:13: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:331:13: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:332:13: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:334:13: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:335:13: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:336:13: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:338:13: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:339:13: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:340:13: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:377:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:378:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:382:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:387:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:392:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:393:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:402:11: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:403:11: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:404:11: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx` ```text PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:130:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:131:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:146:47: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:159:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:162:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:169:33: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:171:35: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:171:133: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:172:91: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:258:125: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:258:160: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:259:124: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:259:159: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:260:117: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:280:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:281:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:319:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:335:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:360:117: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:410:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:426:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:488:9: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:491:9: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `PWGEM/PhotonMeson/Tasks/TaggingPi0MCPCMDalitzEE.cxx` ```text PWGEM/PhotonMeson/Tasks/TaggingPi0MCPCMDalitzEE.cxx:27:36: warning: no header providing "o2::aod::pwgem::photonmeson::photonpair::PairType" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Tasks/TaggingPi0PCMDalitzEE.cxx` ```text PWGEM/PhotonMeson/Tasks/TaggingPi0PCMDalitzEE.cxx:27:34: warning: no header providing "o2::aod::pwgem::photonmeson::photonpair::PairType" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/TaggingPi0PCMDalitzEE.cxx:27:76: warning: no header providing "o2::aod::V0Legs" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Tasks/calibTaskEmc.cxx` ```text PWGEM/PhotonMeson/Tasks/calibTaskEmc.cxx:96:8: warning: constructor does not initialize these fields: ccdb, emcalGeom, mBadChannels [cppcoreguidelines-pro-type-member-init] PWGEM/PhotonMeson/Tasks/calibTaskEmc.cxx:106:60: warning: do not use const_cast to remove const qualifier [cppcoreguidelines-pro-type-const-cast] ``` #### `PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx` ```text PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:23:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:28:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:33:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:34:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:46:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:52:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz [cppcoreguidelines-pro-type-member-init] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:54:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:66:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:114:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:115:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:119:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:119:45: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:120:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:122:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:148:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:170:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:184:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:187:98: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:188:117: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:190:52: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:279:17: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:279:89: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:282:14: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:288:22: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:331:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:331:68: warning: no header providing "o2::aod::cent::centFT0M" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:331:150: warning: no header providing "o2::aod::cent::centFT0A" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:331:232: warning: no header providing "o2::aod::cent::centFT0C" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:332:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:334:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:335:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:336:72: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:336:78: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:336:99: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:336:156: warning: no header providing "o2::aod::track::tpcChi2NCl" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:336:217: warning: no header providing "o2::aod::track::itsChi2NCl" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:336:283: warning: no header providing "o2::aod::track::dcaXY" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:336:343: warning: no header providing "o2::aod::track::dcaZ" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:337:74: warning: no header providing "o2::aod::pidtpc::tpcNSigmaEl" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:337:174: warning: no header providing "o2::aod::pidtpc::tpcNSigmaPi" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:339:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:339:78: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx:376:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx` ```text PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:23:1: warning: included header MCUtilities.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:25:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:30:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:35:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:36:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:49:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:55:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz [cppcoreguidelines-pro-type-member-init] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:58:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:71:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:119:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:120:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:131:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:131:45: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:132:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:142:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:146:73: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:155:122: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:164:60: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:196:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:222:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:244:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:342:17: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:342:89: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:360:30: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:489:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:490:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:491:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:491:72: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:491:78: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:491:99: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:491:156: warning: no header providing "o2::aod::track::tpcChi2NCl" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:491:217: warning: no header providing "o2::aod::track::itsChi2NCl" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:491:283: warning: no header providing "o2::aod::track::dcaXY" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:491:343: warning: no header providing "o2::aod::track::dcaZ" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:492:74: warning: no header providing "o2::aod::pidtpc::tpcNSigmaEl" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:492:174: warning: no header providing "o2::aod::pidtpc::tpcNSigmaPi" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:493:35: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:494:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:494:80: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:497:68: warning: no header providing "o2::aod::cent::centFT0M" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:497:150: warning: no header providing "o2::aod::cent::centFT0A" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:497:232: warning: no header providing "o2::aod::cent::centFT0C" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:536:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:538:68: warning: no header providing "o2::aod::mcparticle::pdgCode" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/dalitzEEQCMC.cxx:540:3: warning: no header providing "o2::framework::PresliceUnsorted" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Tasks/diphotonHadronMPCPCMDalitzEE.cxx` ```text PWGEM/PhotonMeson/Tasks/diphotonHadronMPCPCMDalitzEE.cxx:21:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/diphotonHadronMPCPCMDalitzEE.cxx:23:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/diphotonHadronMPCPCMDalitzEE.cxx:24:1: warning: included header AnalysisDataModel.h is not used directly [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Tasks/diphotonHadronMPCPCMPCM.cxx` ```text PWGEM/PhotonMeson/Tasks/diphotonHadronMPCPCMPCM.cxx:21:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/diphotonHadronMPCPCMPCM.cxx:22:1: warning: included header AnalysisDataModel.h is not used directly [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx` ```text PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:28:1: warning: included header AxisAngle.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:29:1: warning: included header LorentzRotation.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:30:1: warning: included header Rotation3D.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:31:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:32:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:39:31: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:40:47: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:42:8: warning: constructor does not initialize these fields: emcalGeom [cppcoreguidelines-pro-type-member-init] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:45:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:51:16: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:63:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:63:66: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:67:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:74:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:78:96: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:82:24: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:136:18: warning: no header providing "std::runtime_error" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:150:65: warning: no header providing "o2::emcal::EMCALSMType" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:161:44: warning: no header providing "std::exp" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:208:56: warning: no header providing "o2::soa::CombinationsStrictlyUpperIndexPolicy" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:209:19: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:212:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:215:35: warning: no header providing "std::acos" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:229:19: warning: no header providing "ROOT::Math::AxisAngle" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:230:19: warning: no header providing "ROOT::Math::Rotation3D" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:239:29: warning: no header providing "o2::emcal::InvalidPositionException" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:374:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Tasks/emcalPi0Qc.cxx` ```text PWGEM/PhotonMeson/Tasks/emcalPi0Qc.cxx:223:11: warning: variable 'bcid' is not initialized [cppcoreguidelines-init-variables] PWGEM/PhotonMeson/Tasks/emcalPi0Qc.cxx:233:11: warning: variable 'bcid' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGEM/PhotonMeson/Tasks/gammaConversions.cxx` ```text PWGEM/PhotonMeson/Tasks/gammaConversions.cxx:670:12: warning: variable 'sameMother' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGEM/PhotonMeson/Tasks/gammaConversionsTruthOnlyMc.cxx` ```text PWGEM/PhotonMeson/Tasks/gammaConversionsTruthOnlyMc.cxx:25:1: warning: included header TVector3.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/gammaConversionsTruthOnlyMc.cxx:35:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/gammaConversionsTruthOnlyMc.cxx:42:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/gammaConversionsTruthOnlyMc.cxx:49:88: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/gammaConversionsTruthOnlyMc.cxx:76:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Tasks/mcGeneratorStudies.cxx` ```text PWGEM/PhotonMeson/Tasks/mcGeneratorStudies.cxx:25:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/mcGeneratorStudies.cxx:32:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/mcGeneratorStudies.cxx:35:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/mcGeneratorStudies.cxx:38:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/mcGeneratorStudies.cxx:40:143: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/PhotonMeson/Tasks/mcGeneratorStudies.cxx:49:67: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Tasks/phosQC.cxx` ```text PWGEM/PhotonMeson/Tasks/phosQC.cxx:67:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/phosQC.cxx:71:31: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/phosQC.cxx:81:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/phosQC.cxx:81:107: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGEM/PhotonMeson/Tasks/phosQC.cxx:105:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/phosQC.cxx:106:30: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/phosQC.cxx:122:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/phosQC.cxx:126:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/phosQC.cxx:131:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/phosQC.cxx:136:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/phosQC.cxx:137:7: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGEM/PhotonMeson/Tasks/phosQC.cxx:151:9: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `PWGEM/PhotonMeson/Tasks/prefilterPhoton.cxx` ```text PWGEM/PhotonMeson/Tasks/prefilterPhoton.cxx:71:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz [cppcoreguidelines-pro-type-member-init] ``` #### `PWGEM/PhotonMeson/Tasks/taskPi0FlowEMC.cxx` ```text PWGEM/PhotonMeson/Tasks/taskPi0FlowEMC.cxx:113:8: warning: constructor does not initialize these fields: ccdb, emcalGeom, mBadChannels, lookupTable1D [cppcoreguidelines-pro-type-member-init] PWGEM/PhotonMeson/Tasks/taskPi0FlowEMC.cxx:240:62: warning: do not use const_cast to remove const qualifier [cppcoreguidelines-pro-type-const-cast] ``` #### `PWGEM/PhotonMeson/Utils/ClusterHistograms.h` ```text PWGEM/PhotonMeson/Utils/ClusterHistograms.h:114:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] ``` #### `PWGEM/PhotonMeson/Utils/gammaConvDefinitions.h` ```text PWGEM/PhotonMeson/Utils/gammaConvDefinitions.h:22:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] ``` #### `PWGEM/Tasks/phosAlign.cxx` ```text PWGEM/Tasks/phosAlign.cxx:12:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:13:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:16:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:22:1: warning: included header InteractionRecord.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:23:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:27:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:30:1: warning: included header ConfigParamSpec.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:38:1: warning: included header map is not used directly [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:53:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Tasks/phosAlign.cxx:55:20: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:66:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:69:46: warning: no header providing "kTVXinPHOS" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:71:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:81:46: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:96:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:99:28: warning: no header providing "o2::base::NameConf" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:103:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:121:57: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:193:15: warning: variable 'module' is not initialized [cppcoreguidelines-init-variables] PWGEM/Tasks/phosAlign.cxx:226:20: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:298:21: warning: no header providing "pow" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:317:13: warning: redundant condition 'isDispOK' [bugprone-redundant-branch-condition] PWGEM/Tasks/phosAlign.cxx:348:19: warning: no header providing "std::max" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:367:51: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGEM/Tasks/phosAlign.cxx:373:26: warning: no header providing "TMath::TwoPi" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:391:20: warning: no header providing "sqrt" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:407:20: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:408:28: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:409:28: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:410:28: warning: no header providing "std::tan" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:410:42: warning: no header providing "std::atan" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:410:52: warning: no header providing "std::exp" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:416:17: warning: no header providing "cos" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:416:34: warning: no header providing "sin" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:434:20: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:439:25: warning: no header providing "TMath::Min" is directly included [misc-include-cleaner] PWGEM/Tasks/phosAlign.cxx:452:48: warning: no header providing "TMath::Exp" is directly included [misc-include-cleaner] ``` #### `PWGEM/Tasks/phosCalibration.cxx` ```text PWGEM/Tasks/phosCalibration.cxx:14:1: warning: included header map is not used directly [misc-include-cleaner] PWGEM/Tasks/phosCalibration.cxx:17:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosCalibration.cxx:18:1: warning: included header TGrid.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosCalibration.cxx:31:1: warning: included header ConfigParamSpec.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosCalibration.cxx:52:8: warning: constructor does not initialize these fields: ccdb, geom [cppcoreguidelines-pro-type-member-init] PWGEM/Tasks/phosCalibration.cxx:54:9: warning: constructor does not initialize these fields: fBC, fabsId, fBad [cppcoreguidelines-pro-type-member-init] PWGEM/Tasks/phosCalibration.cxx:59:5: warning: constructor does not initialize these fields: fBC [cppcoreguidelines-pro-type-member-init] PWGEM/Tasks/phosCalibration.cxx:60:5: warning: constructor does not initialize these fields: fBC [cppcoreguidelines-pro-type-member-init] PWGEM/Tasks/phosCalibration.cxx:61:19: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCalibration.cxx:63:16: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCalibration.cxx:74:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCalibration.cxx:83:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCalibration.cxx:83:46: warning: no header providing "kTVXinPHOS" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCalibration.cxx:101:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCalibration.cxx:102:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCalibration.cxx:115:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCalibration.cxx:118:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCalibration.cxx:122:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCalibration.cxx:132:55: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCalibration.cxx:329:22: warning: no header providing "o2::dataformats::MCTruthContainer" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCalibration.cxx:329:49: warning: no header providing "o2::phos::MCLabel" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCalibration.cxx:338:7: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCalibration.cxx:348:15: warning: variable 'x' is not initialized [cppcoreguidelines-init-variables] PWGEM/Tasks/phosCalibration.cxx:348:18: warning: variable 'z' is not initialized [cppcoreguidelines-init-variables] PWGEM/Tasks/phosCalibration.cxx:354:14: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCalibration.cxx:390:37: warning: no header providing "TMath::Log" is directly included [misc-include-cleaner] ``` #### `PWGEM/Tasks/phosCellQA.cxx` ```text PWGEM/Tasks/phosCellQA.cxx:14:1: warning: included header map is not used directly [misc-include-cleaner] PWGEM/Tasks/phosCellQA.cxx:15:1: warning: included header memory is not used directly [misc-include-cleaner] PWGEM/Tasks/phosCellQA.cxx:21:1: warning: included header Cell.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosCellQA.cxx:23:1: warning: included header ConfigParamSpec.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosCellQA.cxx:48:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Tasks/phosCellQA.cxx:50:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCellQA.cxx:52:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCellQA.cxx:54:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCellQA.cxx:54:46: warning: no header providing "kTVXinPHOS" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCellQA.cxx:64:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCellQA.cxx:66:39: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCellQA.cxx:67:35: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCellQA.cxx:83:24: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCellQA.cxx:102:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ``` #### `PWGEM/Tasks/phosCluQA.cxx` ```text PWGEM/Tasks/phosCluQA.cxx:20:1: warning: included header ConfigParamSpec.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosCluQA.cxx:51:8: warning: constructor does not initialize these fields: ccdb, hRe, hMi, hReAmb, hMiAmb, hCluMul, hCluMulAmb, hCluETime, hCluETimeAmb, hCluSp, hCluSpAmb [cppcoreguidelines-pro-type-member-init] PWGEM/Tasks/phosCluQA.cxx:53:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCluQA.cxx:56:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCluQA.cxx:57:46: warning: no header providing "kTVXinPHOS" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCluQA.cxx:63:18: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCluQA.cxx:68:14: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCluQA.cxx:70:14: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCluQA.cxx:73:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCluQA.cxx:75:39: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCluQA.cxx:76:35: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCluQA.cxx:114:24: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCluQA.cxx:189:14: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCluQA.cxx:287:22: warning: no header providing "pow" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCluQA.cxx:361:7: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCluQA.cxx:371:15: warning: no header providing "sqrt" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCluQA.cxx:429:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCluQA.cxx:603:13: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCluQA.cxx:605:13: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGEM/Tasks/phosCluQA.cxx:605:21: warning: variable 'mod' is not initialized [cppcoreguidelines-init-variables] PWGEM/Tasks/phosCluQA.cxx:606:19: warning: variable 'x' is not initialized [cppcoreguidelines-init-variables] PWGEM/Tasks/phosCluQA.cxx:606:22: warning: variable 'z' is not initialized [cppcoreguidelines-init-variables] PWGEM/Tasks/phosCluQA.cxx:703:12: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] ``` #### `PWGEM/Tasks/phosElId.cxx` ```text PWGEM/Tasks/phosElId.cxx:19:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:20:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:32:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:33:1: warning: included header InteractionRecord.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:34:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:41:1: warning: included header ConfigParamSpec.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:105:9: warning: variable 'rSquared' is not initialized [cppcoreguidelines-init-variables] PWGEM/Tasks/phosElId.cxx:115:8: warning: constructor does not initialize these fields: ccdb, fSigma_dz, fSigma_dx, fMeandXPosMod, fMeandXNegMod [cppcoreguidelines-pro-type-member-init] PWGEM/Tasks/phosElId.cxx:117:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:123:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:167:46: warning: no header providing "kTVXinPHOS" is directly included [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:187:51: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:189:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:198:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:206:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:230:54: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:232:73: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:299:24: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:385:7: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:385:15: warning: variable 'module' is not initialized [cppcoreguidelines-init-variables] PWGEM/Tasks/phosElId.cxx:494:102: warning: no header providing "TMath::RadToDeg" is directly included [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:584:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:637:15: warning: variable 'module' is not initialized [cppcoreguidelines-init-variables] PWGEM/Tasks/phosElId.cxx:916:16: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:968:8: warning: constructor does not initialize these fields: ccdb, fEpSigmaPhos [cppcoreguidelines-pro-type-member-init] PWGEM/Tasks/phosElId.cxx:1101:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGEM/Tasks/phosElId.cxx:1167:21: warning: no header providing "ROOT::Math::LorentzVector" is directly included [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:1167:47: warning: no header providing "ROOT::Math::PxPyPzE4D" is directly included [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:1217:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Tasks/phosElId.cxx:1377:17: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGEM/Tasks/phosElId.cxx:1427:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGEM/Tasks/phosElId.cxx:1895:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ``` #### `PWGEM/Tasks/phosNbar.cxx` ```text PWGEM/Tasks/phosNbar.cxx:18:1: warning: included header InteractionRecord.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:20:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:26:1: warning: included header ConfigParamSpec.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:29:1: warning: included header Geometry.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:30:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:34:1: warning: included header queue is not used directly [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:53:8: warning: constructor does not initialize these fields: ccdb, hRePP, hRePM, hMiPP, hMiPM, hSignalSP, hSignalSM, hSignalOther, hRePPDCA, hRePMDCA, hMiPPDCA, hMiPMDCA, hRePPCPA, hRePMCPA, hMiPPCPA, hMiPMCPA [cppcoreguidelines-pro-type-member-init] PWGEM/Tasks/phosNbar.cxx:57:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:67:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:69:46: warning: no header providing "kTVXinPHOS" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:84:16: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:121:27: warning: no header providing "o2::track::TrackParametrization" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:132:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:134:19: warning: no header providing "std::deque" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:137:3: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:138:3: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:142:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:144:50: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:159:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:165:28: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:190:86: warning: no header providing "TMath::TwoPi" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:193:119: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:260:19: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGEM/Tasks/phosNbar.cxx:260:19: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:262:28: warning: no header providing "sqrt" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:262:33: warning: no header providing "pow" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:263:33: warning: no header providing "atan2" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:277:19: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGEM/Tasks/phosNbar.cxx:297:12: warning: variable 'cpa' is not initialized [cppcoreguidelines-init-variables] PWGEM/Tasks/phosNbar.cxx:297:17: warning: variable 'm' is not initialized [cppcoreguidelines-init-variables] PWGEM/Tasks/phosNbar.cxx:297:20: warning: variable 'pt' is not initialized [cppcoreguidelines-init-variables] PWGEM/Tasks/phosNbar.cxx:298:17: warning: no header providing "o2::math_utils::Point3D" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:459:27: warning: no header providing "o2::aod::evsel::kIsBBT0A" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:459:58: warning: no header providing "o2::aod::evsel::kIsBBT0C" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:468:27: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:489:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:518:27: warning: no header providing "std::min" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:602:33: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:602:43: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:731:17: warning: no header providing "o2::math_utils::Vector3D" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:737:10: warning: no header providing "std::pair" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:749:20: warning: no header providing "cosf" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:749:48: warning: no header providing "sinf" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:750:25: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:843:32: warning: no header providing "sin" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:843:58: warning: no header providing "cos" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:844:51: warning: no header providing "o2::math_utils::pi" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNbar.cxx:984:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGEM/Tasks/phosNonlin.cxx` ```text PWGEM/Tasks/phosNonlin.cxx:20:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosNonlin.cxx:22:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosNonlin.cxx:25:1: warning: included header InteractionRecord.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosNonlin.cxx:26:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosNonlin.cxx:28:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosNonlin.cxx:31:1: warning: included header ConfigParamSpec.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosNonlin.cxx:34:1: warning: included header Geometry.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosNonlin.cxx:41:1: warning: included header map is not used directly [misc-include-cleaner] PWGEM/Tasks/phosNonlin.cxx:51:8: warning: constructor does not initialize these fields: ccdb, hReIJ, hReKL, hReMIJ, hReMKL, hMi [cppcoreguidelines-pro-type-member-init] PWGEM/Tasks/phosNonlin.cxx:52:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNonlin.cxx:55:44: warning: no header providing "kTVXinPHOS" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNonlin.cxx:90:18: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNonlin.cxx:95:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNonlin.cxx:98:9: warning: constructor does not initialize these fields: mod [cppcoreguidelines-pro-type-member-init] PWGEM/Tasks/phosNonlin.cxx:113:19: warning: no header providing "std::deque" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNonlin.cxx:117:14: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNonlin.cxx:125:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNonlin.cxx:135:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNonlin.cxx:140:79: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNonlin.cxx:141:79: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNonlin.cxx:183:9: warning: variable 'i' is not initialized [cppcoreguidelines-init-variables] PWGEM/Tasks/phosNonlin.cxx:183:12: warning: variable 'j' is not initialized [cppcoreguidelines-init-variables] PWGEM/Tasks/phosNonlin.cxx:183:15: warning: variable 'k' is not initialized [cppcoreguidelines-init-variables] PWGEM/Tasks/phosNonlin.cxx:183:18: warning: variable 'l' is not initialized [cppcoreguidelines-init-variables] PWGEM/Tasks/phosNonlin.cxx:203:37: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Tasks/phosNonlin.cxx:282:41: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:282:64: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:283:41: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:283:64: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:284:41: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:284:64: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:285:41: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:285:64: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:286:41: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:286:64: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:287:41: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:287:64: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:288:41: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:288:64: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:289:41: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:289:64: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:293:41: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:293:64: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:294:41: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:294:64: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:295:41: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:295:64: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:296:41: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:296:64: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:297:41: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGEM/Tasks/phosNonlin.cxx:297:64: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] ``` #### `PWGEM/Tasks/phosPi0.cxx` ```text PWGEM/Tasks/phosPi0.cxx:20:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:22:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:25:1: warning: included header InteractionRecord.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:26:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:28:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:31:1: warning: included header ConfigParamSpec.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:34:1: warning: included header Geometry.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:41:1: warning: included header map is not used directly [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:52:8: warning: constructor does not initialize these fields: ccdb, hColl, hReMod, hMiMod, hReAsym, hMiAsym, hReAll, hReDisp, hReCPV, hReBoth, hSignalAll, hPi0SignalAll, hPi0SignalCPV, hPi0SignalDisp, hPi0SignalBoth, hMiAll, hMiDisp, hMiCPV, hMiBoth, hReOneAll, hReOneDisp, hReOneCPV, hReOneBoth, hMiOneAll, hMiOneDisp, hMiOneCPV, hMiOneBoth, hReTime12, hReTime30, hReTime50, hReTime100 [cppcoreguidelines-pro-type-member-init] PWGEM/Tasks/phosPi0.cxx:53:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:56:44: warning: no header providing "kTVXinPHOS" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:79:18: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:81:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:95:37: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:117:19: warning: no header providing "std::deque" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:122:3: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:123:3: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:124:3: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:135:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:141:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:156:94: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:195:90: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:294:109: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:328:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:378:27: warning: no header providing "o2::aod::evsel::kIsBBT0A" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:378:58: warning: no header providing "o2::aod::evsel::kIsBBT0C" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:387:23: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:390:23: warning: no header providing "kPHOS" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:440:41: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:447:38: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:513:25: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:825:46: warning: no header providing "std::exp" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:848:29: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:919:54: warning: no header providing "std::tanh" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:939:23: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGEM/Tasks/phosPi0.cxx:940:24: warning: no header providing "std::sin" is directly included [misc-include-cleaner] ``` #### `PWGEM/Tasks/phosTrigQA.cxx` ```text PWGEM/Tasks/phosTrigQA.cxx:20:1: warning: included header ConfigParamSpec.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosTrigQA.cxx:25:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosTrigQA.cxx:31:1: warning: included header Geometry.h is not used directly [misc-include-cleaner] PWGEM/Tasks/phosTrigQA.cxx:50:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGEM/Tasks/phosTrigQA.cxx:52:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGEM/Tasks/phosTrigQA.cxx:57:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGEM/Tasks/phosTrigQA.cxx:62:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGEM/Tasks/phosTrigQA.cxx:64:24: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGEM/Tasks/phosTrigQA.cxx:65:20: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGEM/Tasks/phosTrigQA.cxx:77:37: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGEM/Tasks/phosTrigQA.cxx:90:38: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGEM/Tasks/phosTrigQA.cxx:104:24: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGEM/Tasks/phosTrigQA.cxx:156:12: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] PWGEM/Tasks/phosTrigQA.cxx:173:14: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGEM/Tasks/phosTrigQA.cxx:199:14: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGEM/Tasks/phosTrigQA.cxx:292:22: warning: no header providing "pow" is directly included [misc-include-cleaner] PWGEM/Tasks/phosTrigQA.cxx:333:55: warning: no header providing "kTVXinPHOS" is directly included [misc-include-cleaner] PWGEM/Tasks/phosTrigQA.cxx:339:55: warning: no header providing "o2::aod::evsel::kIsBBT0A" is directly included [misc-include-cleaner] PWGEM/Tasks/phosTrigQA.cxx:339:112: warning: no header providing "o2::aod::evsel::kIsBBT0C" is directly included [misc-include-cleaner] PWGEM/Tasks/phosTrigQA.cxx:351:55: warning: no header providing "o2::aod::evsel::kIsBBV0A" is directly included [misc-include-cleaner] PWGEM/Tasks/phosTrigQA.cxx:357:55: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGEM/Tasks/phosTrigQA.cxx:522:15: warning: no header providing "sqrt" is directly included [misc-include-cleaner] ``` ### PWGHF #### `PWGHF/Core/HfMlResponseB0ToDPi.h` ```text PWGHF/Core/HfMlResponseB0ToDPi.h:26:1: warning: included header vector is not used directly [misc-include-cleaner] PWGHF/Core/HfMlResponseB0ToDPi.h:163:13: warning: no header providing "LOG" is directly included [misc-include-cleaner] ``` #### `PWGHF/Core/HfMlResponseBplusToD0Pi.h` ```text PWGHF/Core/HfMlResponseBplusToD0Pi.h:27:1: warning: included header vector is not used directly [misc-include-cleaner] ``` #### `PWGHF/Core/HfMlResponseBplusToD0PiReduced.h` ```text PWGHF/Core/HfMlResponseBplusToD0PiReduced.h:25:1: warning: included header vector is not used directly [misc-include-cleaner] ``` #### `PWGHF/Core/HfMlResponseBplusToJpsiKReduced.h` ```text PWGHF/Core/HfMlResponseBplusToJpsiKReduced.h:27:1: warning: included header vector is not used directly [misc-include-cleaner] ``` #### `PWGHF/Core/HfMlResponseBsToDsPi.h` ```text PWGHF/Core/HfMlResponseBsToDsPi.h:25:1: warning: included header vector is not used directly [misc-include-cleaner] ``` #### `PWGHF/Core/HfMlResponseBsToJpsiPhiReduced.h` ```text PWGHF/Core/HfMlResponseBsToJpsiPhiReduced.h:27:1: warning: included header vector is not used directly [misc-include-cleaner] ``` #### `PWGHF/Core/HfMlResponseD0ToKPi.h` ```text PWGHF/Core/HfMlResponseD0ToKPi.h:28:1: warning: included header vector is not used directly [misc-include-cleaner] ``` #### `PWGHF/Core/HfMlResponseDplusToPiKPi.h` ```text PWGHF/Core/HfMlResponseDplusToPiKPi.h:24:1: warning: included header vector is not used directly [misc-include-cleaner] ``` #### `PWGHF/Core/HfMlResponseDsToKKPi.h` ```text PWGHF/Core/HfMlResponseDsToKKPi.h:25:1: warning: included header vector is not used directly [misc-include-cleaner] ``` #### `PWGHF/Core/HfMlResponseDstarToD0Pi.h` ```text PWGHF/Core/HfMlResponseDstarToD0Pi.h:26:1: warning: included header vector is not used directly [misc-include-cleaner] ``` #### `PWGHF/Core/HfMlResponseLbToLcPi.h` ```text PWGHF/Core/HfMlResponseLbToLcPi.h:25:1: warning: included header vector is not used directly [misc-include-cleaner] ``` #### `PWGHF/Core/HfMlResponseLcToK0sP.h` ```text PWGHF/Core/HfMlResponseLcToK0sP.h:26:1: warning: included header vector is not used directly [misc-include-cleaner] ``` #### `PWGHF/Core/HfMlResponseLcToPKPi.h` ```text PWGHF/Core/HfMlResponseLcToPKPi.h:25:1: warning: included header map is not used directly [misc-include-cleaner] PWGHF/Core/HfMlResponseLcToPKPi.h:26:1: warning: included header string is not used directly [misc-include-cleaner] PWGHF/Core/HfMlResponseLcToPKPi.h:27:1: warning: included header vector is not used directly [misc-include-cleaner] ``` #### `PWGHF/Core/HfMlResponseOmegacToOmegaPi.h` ```text PWGHF/Core/HfMlResponseOmegacToOmegaPi.h:19:1: warning: included header HfHelper.h is not used directly [misc-include-cleaner] PWGHF/Core/HfMlResponseOmegacToOmegaPi.h:25:1: warning: included header vector is not used directly [misc-include-cleaner] ``` #### `PWGHF/Core/HfMlResponseXic0ToXiPi.h` ```text PWGHF/Core/HfMlResponseXic0ToXiPi.h:24:1: warning: included header vector is not used directly [misc-include-cleaner] ``` #### `PWGHF/Core/HfMlResponseXic0ToXiPiKf.h` ```text PWGHF/Core/HfMlResponseXic0ToXiPiKf.h:24:1: warning: included header vector is not used directly [misc-include-cleaner] ``` #### `PWGHF/Core/HfMlResponseXicToPKPi.h` ```text PWGHF/Core/HfMlResponseXicToPKPi.h:24:1: warning: included header vector is not used directly [misc-include-cleaner] ``` #### `PWGHF/Core/HfMlResponseXicToXiPiPi.h` ```text PWGHF/Core/HfMlResponseXicToXiPiPi.h:24:1: warning: included header vector is not used directly [misc-include-cleaner] ``` #### `PWGHF/D2H/Macros/HFInvMassFitter.cxx` ```text PWGHF/D2H/Macros/HFInvMassFitter.cxx:187:37: warning: no header providing "Form" is directly included [misc-include-cleaner] ``` #### `PWGHF/D2H/Macros/runMassFitter.C` ```text PWGHF/D2H/Macros/runMassFitter.C:46:1: warning: included header tuple is not used directly [misc-include-cleaner] ``` #### `PWGHF/D2H/TableProducer/candidateCreatorB0Reduced.cxx` ```text PWGHF/D2H/TableProducer/candidateCreatorB0Reduced.cxx:212:15: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGHF/D2H/TableProducer/candidateCreatorB0Reduced.cxx:212:20: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] PWGHF/D2H/TableProducer/candidateCreatorB0Reduced.cxx:315:15: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGHF/D2H/TableProducer/candidateCreatorB0Reduced.cxx:315:20: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/D2H/TableProducer/candidateCreatorBToJpsiReduced.cxx` ```text PWGHF/D2H/TableProducer/candidateCreatorBToJpsiReduced.cxx:261:18: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGHF/D2H/TableProducer/candidateCreatorBToJpsiReduced.cxx:261:23: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] PWGHF/D2H/TableProducer/candidateCreatorBToJpsiReduced.cxx:333:20: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGHF/D2H/TableProducer/candidateCreatorBToJpsiReduced.cxx:333:25: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/D2H/TableProducer/candidateCreatorBplusReduced.cxx` ```text PWGHF/D2H/TableProducer/candidateCreatorBplusReduced.cxx:186:16: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGHF/D2H/TableProducer/candidateCreatorBplusReduced.cxx:186:21: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/D2H/TableProducer/candidateCreatorBsReduced.cxx` ```text PWGHF/D2H/TableProducer/candidateCreatorBsReduced.cxx:186:15: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGHF/D2H/TableProducer/candidateCreatorBsReduced.cxx:186:20: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/D2H/TableProducer/candidateCreatorCharmResoReduced.cxx` ```text PWGHF/D2H/TableProducer/candidateCreatorCharmResoReduced.cxx:453:15: warning: variable 'invMassD0' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/D2H/TableProducer/candidateCreatorLbReduced.cxx` ```text PWGHF/D2H/TableProducer/candidateCreatorLbReduced.cxx:206:15: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGHF/D2H/TableProducer/candidateCreatorLbReduced.cxx:206:20: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/D2H/TableProducer/dataCreatorCharmHadPiReduced.cxx` ```text PWGHF/D2H/TableProducer/dataCreatorCharmHadPiReduced.cxx:114:8: warning: constructor does not initialize these fields: ccdb, pdg [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/D2H/TableProducer/dataCreatorCharmResoToD0Reduced.cxx` ```text PWGHF/D2H/TableProducer/dataCreatorCharmResoToD0Reduced.cxx:65:8: warning: constructor does not initialize these fields: ccdb, pdg [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/D2H/TableProducer/dataCreatorCharmResoToDplusReduced.cxx` ```text PWGHF/D2H/TableProducer/dataCreatorCharmResoToDplusReduced.cxx:65:8: warning: constructor does not initialize these fields: ccdb, pdg [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/D2H/TableProducer/dataCreatorCharmResoToDstarReduced.cxx` ```text PWGHF/D2H/TableProducer/dataCreatorCharmResoToDstarReduced.cxx:65:8: warning: constructor does not initialize these fields: ccdb, pdg [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/D2H/TableProducer/dataCreatorJpsiHadReduced.cxx` ```text PWGHF/D2H/TableProducer/dataCreatorJpsiHadReduced.cxx:106:8: warning: constructor does not initialize these fields: ccdb, pdg [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/D2H/Tasks/taskB0.cxx` ```text PWGHF/D2H/Tasks/taskB0.cxx:56:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/D2H/Tasks/taskBplus.cxx` ```text PWGHF/D2H/Tasks/taskBplus.cxx:64:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/D2H/Tasks/taskBplusReduced.cxx` ```text PWGHF/D2H/Tasks/taskBplusReduced.cxx:572:15: warning: variable 'tpcNSigmaPi' is not initialized [cppcoreguidelines-init-variables] PWGHF/D2H/Tasks/taskBplusReduced.cxx:572:28: warning: variable 'tofNSigmaPi' is not initialized [cppcoreguidelines-init-variables] PWGHF/D2H/Tasks/taskBplusReduced.cxx:572:41: warning: variable 'tpcTofNSigmaPi' is not initialized [cppcoreguidelines-init-variables] PWGHF/D2H/Tasks/taskBplusReduced.cxx:572:57: warning: variable 'tpcNSigmaKa' is not initialized [cppcoreguidelines-init-variables] PWGHF/D2H/Tasks/taskBplusReduced.cxx:572:70: warning: variable 'tofNSigmaKa' is not initialized [cppcoreguidelines-init-variables] PWGHF/D2H/Tasks/taskBplusReduced.cxx:572:83: warning: variable 'tpcTofNSigmaKa' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/D2H/Tasks/taskBs.cxx` ```text PWGHF/D2H/Tasks/taskBs.cxx:57:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/D2H/Tasks/taskCd.cxx` ```text PWGHF/D2H/Tasks/taskCd.cxx:80:48: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGHF/D2H/Tasks/taskCd.cxx:88:42: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGHF/D2H/Tasks/taskCd.cxx:119:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGHF/D2H/Tasks/taskCd.cxx:132:52: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGHF/D2H/Tasks/taskCd.cxx:132:68: warning: no header providing "o2::aod::pidTPCFullPi" is directly included [misc-include-cleaner] PWGHF/D2H/Tasks/taskCd.cxx:132:87: warning: no header providing "o2::aod::pidTPCFullKa" is directly included [misc-include-cleaner] PWGHF/D2H/Tasks/taskCd.cxx:132:106: warning: no header providing "o2::aod::pidTPCFullDe" is directly included [misc-include-cleaner] PWGHF/D2H/Tasks/taskCd.cxx:132:125: warning: no header providing "o2::aod::pidTOFFullPi" is directly included [misc-include-cleaner] PWGHF/D2H/Tasks/taskCd.cxx:132:144: warning: no header providing "o2::aod::pidTOFFullKa" is directly included [misc-include-cleaner] PWGHF/D2H/Tasks/taskCd.cxx:132:163: warning: no header providing "o2::aod::pidTOFFullDe" is directly included [misc-include-cleaner] PWGHF/D2H/Tasks/taskCd.cxx:237:5: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGHF/D2H/Tasks/taskCd.cxx:456:34: warning: no header providing "o2::soa::Attach" is directly included [misc-include-cleaner] ``` #### `PWGHF/D2H/Tasks/taskCharmPolarisation.cxx` ```text PWGHF/D2H/Tasks/taskCharmPolarisation.cxx:144:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/D2H/Tasks/taskCharmPolarisation.cxx:1441:11: warning: variable 'invMassMin' is not initialized [cppcoreguidelines-init-variables] PWGHF/D2H/Tasks/taskCharmPolarisation.cxx:1442:11: warning: variable 'invMassMax' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/D2H/Tasks/taskD0.cxx` ```text PWGHF/D2H/Tasks/taskD0.cxx:82:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/D2H/Tasks/taskD0.cxx:407:13: warning: variable 'massD0' is not initialized [cppcoreguidelines-init-variables] PWGHF/D2H/Tasks/taskD0.cxx:407:21: warning: variable 'massD0bar' is not initialized [cppcoreguidelines-init-variables] PWGHF/D2H/Tasks/taskD0.cxx:773:13: warning: variable 'massD0' is not initialized [cppcoreguidelines-init-variables] PWGHF/D2H/Tasks/taskD0.cxx:773:21: warning: variable 'massD0bar' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/D2H/Tasks/taskDirectedFlowCharmHadrons.cxx` ```text PWGHF/D2H/Tasks/taskDirectedFlowCharmHadrons.cxx:61:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/D2H/Tasks/taskDplus.cxx` ```text PWGHF/D2H/Tasks/taskDplus.cxx:74:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/D2H/Tasks/taskDs.cxx` ```text PWGHF/D2H/Tasks/taskDs.cxx:143:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/D2H/Tasks/taskDstarToD0Pi.cxx` ```text PWGHF/D2H/Tasks/taskDstarToD0Pi.cxx:311:35: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/D2H/Tasks/taskDstarToD0Pi.cxx:654:15: warning: variable 'centFT0MGen' is not initialized [cppcoreguidelines-init-variables] PWGHF/D2H/Tasks/taskDstarToD0Pi.cxx:655:15: warning: variable 'pvContributors' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/D2H/Tasks/taskFlowCharmHadrons.cxx` ```text PWGHF/D2H/Tasks/taskFlowCharmHadrons.cxx:105:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/D2H/Tasks/taskFlowCharmHadrons.cxx:567:33: warning: no header providing "o2::constants::physics::MassDPlus" is directly included [misc-include-cleaner] PWGHF/D2H/Tasks/taskFlowCharmHadrons.cxx:582:37: warning: no header providing "o2::constants::physics::MassD0" is directly included [misc-include-cleaner] ``` #### `PWGHF/D2H/Tasks/taskLb.cxx` ```text PWGHF/D2H/Tasks/taskLb.cxx:59:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/D2H/Tasks/taskLc.cxx` ```text PWGHF/D2H/Tasks/taskLc.cxx:73:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/D2H/Tasks/taskPtFlucCharmHadrons.cxx` ```text PWGHF/D2H/Tasks/taskPtFlucCharmHadrons.cxx:58:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/D2H/Tasks/taskPtFlucCharmHadrons.cxx:104:73: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGHF/D2H/Tasks/taskPtFlucCharmHadrons.cxx:104:89: warning: no header providing "o2::aod::TrackSelection" is directly included [misc-include-cleaner] PWGHF/D2H/Tasks/taskPtFlucCharmHadrons.cxx:225:20: warning: no header providing "std::numeric_limits" is directly included [misc-include-cleaner] ``` #### `PWGHF/D2H/Tasks/taskSigmac.cxx` ```text PWGHF/D2H/Tasks/taskSigmac.cxx:605:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ``` #### `PWGHF/D2H/Tasks/taskXic.cxx` ```text PWGHF/D2H/Tasks/taskXic.cxx:60:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/D2H/Tasks/taskXic0ToXiPi.cxx` ```text PWGHF/D2H/Tasks/taskXic0ToXiPi.cxx:177:12: warning: variable 'yCharmBaryon' is not initialized [cppcoreguidelines-init-variables] PWGHF/D2H/Tasks/taskXic0ToXiPi.cxx:226:14: warning: variable 'yCharmBaryon' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/D2H/Tasks/taskXicToXiPiPi.cxx` ```text PWGHF/D2H/Tasks/taskXicToXiPiPi.cxx:60:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/DataModel/DerivedTables.h` ```text PWGHF/DataModel/DerivedTables.h:315:8: warning: no header providing "B0" is directly included [misc-include-cleaner] ``` #### `PWGHF/HFC/Macros/DhCorrelationExtraction.cxx` ```text PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:40:1: warning: constructor does not initialize these fields: fSBYield [cppcoreguidelines-pro-type-member-init] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:110:1: warning: constructor does not initialize these fields: fSBYield [cppcoreguidelines-pro-type-member-init] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:110:26: warning: calling a base constructor other than the copy constructor [bugprone-copy-constructor-init] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:216:17: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:217:17: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:218:23: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:219:18: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:220:18: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:221:24: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:223:19: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:224:20: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:226:9: warning: variable 'h2DSign' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:227:9: warning: variable 'h2DSideb' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:228:9: warning: variable 'h2DSubtr' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:230:9: warning: variable 'h2DFdTemplatePrompt' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:231:9: warning: variable 'h2DFdTemplateNonPrompt' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:233:9: warning: variable 'h1DSign' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:234:9: warning: variable 'h1DSideb' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:235:9: warning: variable 'h1DSubtr' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:236:9: warning: variable 'h1DSignNorm' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:237:9: warning: variable 'h1DSidebNorm' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:238:9: warning: variable 'h1DSubtrNorm' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:239:9: warning: variable 'h1DFdTemplatePrompt' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:240:9: warning: variable 'h1DFdTemplateNonPrompt' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:241:9: warning: variable 'h1DTemplateTotal' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:242:9: warning: variable 'h1DSubtrFdNorm' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:243:9: warning: variable 'h1DPrimaryPartCorr' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:244:9: warning: variable 'h1DAllPartCorr' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:245:9: warning: variable 'h1DSecPartFrac' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:246:9: warning: variable 'h1DSubtrNormSecPart' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:247:9: warning: variable 'h1DBaselineSubtr' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:248:9: warning: variable 'h1DReflCorr' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:249:9: warning: variable 'h1DReflCorrBaselineSubtr' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:250:9: warning: variable 'hModul' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:251:9: warning: variable 'hBeforeModulCorr' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:253:12: warning: variable 'fdPromptFrac' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:328:24: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:332:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:377:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:378:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:428:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:446:14: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:465:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:466:20: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:491:18: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:501:24: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:511:31: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:514:37: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:536:22: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:547:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:565:24: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:600:14: warning: variable 'baselineData' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:614:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:621:24: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:623:24: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:670:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:672:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:674:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:717:12: warning: variable 'baselineData' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:717:26: warning: variable 'baselineDataErr' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:718:21: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:727:24: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:736:24: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:745:24: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:749:38: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:798:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:807:30: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:835:34: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:836:47: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:856:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:857:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:928:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:960:22: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:961:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:962:22: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:963:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:977:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:980:12: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1029:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1031:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1034:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1036:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1038:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1040:35: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1046:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1048:17: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1051:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1053:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1055:19: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1057:35: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1083:9: warning: variable 'binExtPoolMin' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1084:9: warning: variable 'binExtPoolMax' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1143:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1144:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1145:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1146:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1147:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1191:11: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1193:11: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1225:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1227:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1233:9: warning: variable 'binExtPoolMin' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1234:9: warning: variable 'binExtPoolMax' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1281:12: warning: variable 'reflectedContent' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1281:30: warning: variable 'reflectedContentError' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1310:11: warning: variable 'j2' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1334:15: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1338:12: warning: variable 'promptFraction' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1384:12: warning: variable 'baseline' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:1464:12: warning: variable 'errBaseline' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/HFC/Macros/DhCorrelationFitter.cxx` ```text PWGHF/HFC/Macros/DhCorrelationFitter.cxx:810:12: warning: variable 'baseline' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Macros/DhCorrelationFitter.cxx:883:12: warning: variable 'errBaseline' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/HFC/Macros/ExtractOutputCorrel.C` ```text PWGHF/HFC/Macros/ExtractOutputCorrel.C:165:26: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/ExtractOutputCorrel.C:165:39: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/ExtractOutputCorrel.C:166:39: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/ExtractOutputCorrel.C:166:52: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/ExtractOutputCorrel.C:167:35: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/ExtractOutputCorrel.C:167:48: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/ExtractOutputCorrel.C:168:48: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/ExtractOutputCorrel.C:168:61: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] ``` #### `PWGHF/HFC/Macros/FitCorrel.C` ```text PWGHF/HFC/Macros/FitCorrel.C:113:30: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/FitCorrel.C:128:35: warning: comparison of integers of different signs: 'size_type' (aka 'unsigned long') and 'const int' [clang-diagnostic-sign-compare] PWGHF/HFC/Macros/FitCorrel.C:132:25: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/FitCorrel.C:156:26: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/FitCorrel.C:159:18: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/FitCorrel.C:159:31: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/FitCorrel.C:160:27: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/FitCorrel.C:160:40: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/FitCorrel.C:161:31: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/FitCorrel.C:161:44: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/FitCorrel.C:172:35: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/FitCorrel.C:172:47: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/FitCorrel.C:183:18: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/FitCorrel.C:184:18: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/FitCorrel.C:185:18: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/FitCorrel.C:186:18: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/FitCorrel.C:187:18: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/FitCorrel.C:188:15: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/FitCorrel.C:189:26: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/FitCorrel.C:190:26: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGHF/HFC/Macros/FitCorrel.C:196:43: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/FitCorrel.C:198:43: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/FitCorrel.C:201:67: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/FitCorrel.C:247:52: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/FitCorrel.C:248:56: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/FitCorrel.C:268:12: warning: Value stored to 'fFit' during its initialization is never read [clang-analyzer-deadcode.DeadStores] PWGHF/HFC/Macros/FitCorrel.C:268:12: warning: unused variable 'fFit' [clang-diagnostic-unused-variable] PWGHF/HFC/Macros/FitCorrel.C:274:14: warning: Value stored to 'tpT' during its initialization is never read [clang-analyzer-deadcode.DeadStores] PWGHF/HFC/Macros/FitCorrel.C:274:14: warning: unused variable 'tpT' [clang-diagnostic-unused-variable] PWGHF/HFC/Macros/FitCorrel.C:400:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/FitCorrel.C:401:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/FitCorrel.C:402:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/FitCorrel.C:403:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/HFC/Macros/FitCorrel.C:404:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `PWGHF/HFC/TableProducer/correlatorDplusDplusReduced.cxx` ```text PWGHF/HFC/TableProducer/correlatorDplusDplusReduced.cxx:52:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/HFC/TableProducer/correlatorDsHadrons.cxx` ```text PWGHF/HFC/TableProducer/correlatorDsHadrons.cxx:628:63: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGHF/HFC/TableProducer/correlatorDsHadrons.cxx:628:73: warning: no header providing "std::pow" is directly included [misc-include-cleaner] ``` #### `PWGHF/HFC/TableProducer/correlatorHfeHadrons.cxx` ```text PWGHF/HFC/TableProducer/correlatorHfeHadrons.cxx:244:14: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `PWGHF/HFC/TableProducer/correlatorLcHadrons.cxx` ```text PWGHF/HFC/TableProducer/correlatorLcHadrons.cxx:196:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/HFC/TableProducer/correlatorLcScHadrons.cxx` ```text PWGHF/HFC/TableProducer/correlatorLcScHadrons.cxx:313:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/HFC/TableProducer/derivedDataCreatorCorrelationsReduced.cxx` ```text PWGHF/HFC/TableProducer/derivedDataCreatorCorrelationsReduced.cxx:70:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/HFC/TableProducer/producerCharmHadronsTrackFemtoDream.cxx` ```text PWGHF/HFC/TableProducer/producerCharmHadronsTrackFemtoDream.cxx:108:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/HFC/TableProducer/producerCharmHadronsTrackFemtoDream.cxx:737:124: warning: no header providing "o2::constants::physics::kD0" is directly included [misc-include-cleaner] ``` #### `PWGHF/HFC/TableProducer/producerCharmHadronsV0FemtoDream.cxx` ```text PWGHF/HFC/TableProducer/producerCharmHadronsV0FemtoDream.cxx:113:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/HFC/TableProducer/producerCharmHadronsV0FemtoDream.cxx:920:124: warning: no header providing "o2::constants::physics::kD0" is directly included [misc-include-cleaner] PWGHF/HFC/TableProducer/producerCharmHadronsV0FemtoDream.cxx:1004:51: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] PWGHF/HFC/TableProducer/producerCharmHadronsV0FemtoDream.cxx:1063:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `PWGHF/HFC/Tasks/taskCharmHadronsTrackFemtoDream.cxx` ```text PWGHF/HFC/Tasks/taskCharmHadronsTrackFemtoDream.cxx:286:14: warning: no header providing "std::accumulate" is directly included [misc-include-cleaner] ``` #### `PWGHF/HFC/Tasks/taskCharmHadronsV0FemtoDream.cxx` ```text PWGHF/HFC/Tasks/taskCharmHadronsV0FemtoDream.cxx:26:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGHF/HFC/Tasks/taskCharmHadronsV0FemtoDream.cxx:49:1: warning: included header utility is not used directly [misc-include-cleaner] PWGHF/HFC/Tasks/taskCharmHadronsV0FemtoDream.cxx:304:14: warning: no header providing "std::accumulate" is directly included [misc-include-cleaner] ``` #### `PWGHF/HFC/Tasks/taskCorrelationDplusHadrons.cxx` ```text PWGHF/HFC/Tasks/taskCorrelationDplusHadrons.cxx:101:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/HFC/Tasks/taskCorrelationDsHadrons.cxx` ```text PWGHF/HFC/Tasks/taskCorrelationDsHadrons.cxx:85:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/HFC/Tasks/taskCorrelationDsHadrons.cxx:123:93: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGHF/HFC/Tasks/taskCorrelationDsHadrons.cxx:166:133: warning: no header providing "o2::aod::pidTPCFullPi" is directly included [misc-include-cleaner] PWGHF/HFC/Tasks/taskCorrelationDsHadrons.cxx:166:152: warning: no header providing "o2::aod::pidTPCFullKa" is directly included [misc-include-cleaner] PWGHF/HFC/Tasks/taskCorrelationDsHadrons.cxx:166:171: warning: no header providing "o2::aod::pidTPCFullPr" is directly included [misc-include-cleaner] PWGHF/HFC/Tasks/taskCorrelationDsHadrons.cxx:166:190: warning: no header providing "o2::aod::pidTOFFullPi" is directly included [misc-include-cleaner] PWGHF/HFC/Tasks/taskCorrelationDsHadrons.cxx:166:209: warning: no header providing "o2::aod::pidTOFFullKa" is directly included [misc-include-cleaner] PWGHF/HFC/Tasks/taskCorrelationDsHadrons.cxx:166:228: warning: no header providing "o2::aod::pidTOFFullPr" is directly included [misc-include-cleaner] PWGHF/HFC/Tasks/taskCorrelationDsHadrons.cxx:393:101: warning: unchecked access to optional value [bugprone-unchecked-optional-access] PWGHF/HFC/Tasks/taskCorrelationDsHadrons.cxx:396:111: warning: unchecked access to optional value [bugprone-unchecked-optional-access] PWGHF/HFC/Tasks/taskCorrelationDsHadrons.cxx:415:149: warning: unchecked access to optional value [bugprone-unchecked-optional-access] PWGHF/HFC/Tasks/taskCorrelationDsHadrons.cxx:418:116: warning: unchecked access to optional value [bugprone-unchecked-optional-access] PWGHF/HFC/Tasks/taskCorrelationDsHadrons.cxx:418:263: warning: unchecked access to optional value [bugprone-unchecked-optional-access] PWGHF/HFC/Tasks/taskCorrelationDsHadrons.cxx:420:128: warning: unchecked access to optional value [bugprone-unchecked-optional-access] PWGHF/HFC/Tasks/taskCorrelationDsHadrons.cxx:423:116: warning: unchecked access to optional value [bugprone-unchecked-optional-access] PWGHF/HFC/Tasks/taskCorrelationDsHadrons.cxx:423:242: warning: unchecked access to optional value [bugprone-unchecked-optional-access] ``` #### `PWGHF/HFC/Tasks/taskCorrelationLcHadrons.cxx` ```text PWGHF/HFC/Tasks/taskCorrelationLcHadrons.cxx:106:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/HFC/Tasks/taskFlow.cxx` ```text PWGHF/HFC/Tasks/taskFlow.cxx:171:8: warning: constructor does not initialize these fields: pdg, ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/HFC/Tasks/taskFlow.cxx:364:67: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:364:112: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:364:155: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:365:67: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:365:112: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:365:155: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:366:66: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:366:111: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:366:154: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:367:70: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:367:115: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:367:158: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:368:70: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:368:115: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:368:158: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:369:70: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:369:115: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:369:158: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:370:70: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:370:115: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:370:158: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:371:73: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:371:118: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:371:161: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:441:113: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/HFC/Tasks/taskFlow.cxx:759:11: warning: variable 'offsetX' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Tasks/taskFlow.cxx:759:20: warning: variable 'offsetY' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Tasks/taskFlow.cxx:798:11: warning: variable 'offsetX' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Tasks/taskFlow.cxx:798:20: warning: variable 'offsetY' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Tasks/taskFlow.cxx:798:29: warning: variable 'offsetZ' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFC/Tasks/taskFlow.cxx:1110:15: warning: Variable 'rad' with floating point type 'double' should not be used as a loop counter [clang-analyzer-security.FloatLoopCounter] ``` #### `PWGHF/HFL/TableProducer/treeCreatorElectronDCA.cxx` ```text PWGHF/HFL/TableProducer/treeCreatorElectronDCA.cxx:60:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/HFL/Tasks/taskElectronWeakBoson.cxx` ```text PWGHF/HFL/Tasks/taskElectronWeakBoson.cxx:66:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/HFL/Tasks/taskElectronWeakBoson.cxx:169:92: warning: both sides of overloaded operator are equivalent [misc-redundant-expression] PWGHF/HFL/Tasks/taskElectronWeakBoson.cxx:445:13: warning: variable 'massZee' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFL/Tasks/taskElectronWeakBoson.cxx:445:22: warning: variable 'massZeeErr' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/HFL/Tasks/taskSingleElectron.cxx` ```text PWGHF/HFL/Tasks/taskSingleElectron.cxx:518:11: warning: variable 'mpdg' is not initialized [cppcoreguidelines-init-variables] PWGHF/HFL/Tasks/taskSingleElectron.cxx:519:14: warning: variable 'mpt' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/Macros/computeFonllPlusPythiaPredictions.C` ```text PWGHF/Macros/computeFonllPlusPythiaPredictions.C:31:10: error: 'Pythia8/Pythia.h' file not found [clang-diagnostic-error] PWGHF/Macros/computeFonllPlusPythiaPredictions.C:36:1: warning: included header map is not used directly [misc-include-cleaner] PWGHF/Macros/computeFonllPlusPythiaPredictions.C:39:1: warning: included header vector is not used directly [misc-include-cleaner] PWGHF/Macros/computeFonllPlusPythiaPredictions.C:321:80: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `PWGHF/TableProducer/candidateCreator2Prong.cxx` ```text PWGHF/TableProducer/candidateCreator2Prong.cxx:93:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/TableProducer/candidateCreator2Prong.cxx:124:15: warning: member 'toMicrometers' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGHF/TableProducer/candidateCreator2Prong.cxx:322:14: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreator2Prong.cxx:322:19: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreator2Prong.cxx:475:14: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreator2Prong.cxx:475:19: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/TableProducer/candidateCreator3Prong.cxx` ```text PWGHF/TableProducer/candidateCreator3Prong.cxx:94:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/TableProducer/candidateCreator3Prong.cxx:141:15: warning: member 'toMicrometers' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGHF/TableProducer/candidateCreator3Prong.cxx:382:14: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreator3Prong.cxx:382:19: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreator3Prong.cxx:627:14: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreator3Prong.cxx:627:19: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/TableProducer/candidateCreatorB0.cxx` ```text PWGHF/TableProducer/candidateCreatorB0.cxx:73:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/TableProducer/candidateCreatorB0.cxx:367:18: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorB0.cxx:367:23: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/TableProducer/candidateCreatorBplus.cxx` ```text PWGHF/TableProducer/candidateCreatorBplus.cxx:79:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/TableProducer/candidateCreatorBplus.cxx:348:18: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorBplus.cxx:348:23: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/TableProducer/candidateCreatorBs.cxx` ```text PWGHF/TableProducer/candidateCreatorBs.cxx:72:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/TableProducer/candidateCreatorBs.cxx:345:18: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorBs.cxx:345:23: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/TableProducer/candidateCreatorCascade.cxx` ```text PWGHF/TableProducer/candidateCreatorCascade.cxx:72:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/TableProducer/candidateCreatorCascade.cxx:199:13: warning: variable 'v0X' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorCascade.cxx:199:18: warning: variable 'v0Y' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorCascade.cxx:199:23: warning: variable 'v0Z' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorCascade.cxx:199:28: warning: variable 'v0px' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorCascade.cxx:199:34: warning: variable 'v0py' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorCascade.cxx:199:40: warning: variable 'v0pz' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorCascade.cxx:200:13: warning: variable 'v0PosPx' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorCascade.cxx:200:22: warning: variable 'v0PosPy' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorCascade.cxx:200:31: warning: variable 'v0PosPz' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorCascade.cxx:200:40: warning: variable 'v0NegPx' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorCascade.cxx:200:49: warning: variable 'v0NegPy' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorCascade.cxx:200:58: warning: variable 'v0NegPz' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorCascade.cxx:201:13: warning: variable 'dcaV0dau' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorCascade.cxx:201:23: warning: variable 'dcaPosToPV' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorCascade.cxx:201:35: warning: variable 'dcaNegToPV' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorCascade.cxx:201:47: warning: variable 'v0cosPA' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorCascade.cxx:300:14: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorCascade.cxx:300:19: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/TableProducer/candidateCreatorDstar.cxx` ```text PWGHF/TableProducer/candidateCreatorDstar.cxx:80:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/TableProducer/candidateCreatorDstar.cxx:338:14: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorDstar.cxx:338:19: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/TableProducer/candidateCreatorLb.cxx` ```text PWGHF/TableProducer/candidateCreatorLb.cxx:233:16: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorLb.cxx:233:21: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/TableProducer/candidateCreatorSigmac0plusplus.cxx` ```text PWGHF/TableProducer/candidateCreatorSigmac0plusplus.cxx:73:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx` ```text PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:99:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:616:14: warning: variable 'phiCharmBaryon' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:616:30: warning: variable 'thetaCharmBaryon' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:843:13: warning: variable 'massLam' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:843:22: warning: variable 'sigLam' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:876:13: warning: variable 'massCasc' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:876:23: warning: variable 'sigCasc' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:877:13: warning: variable 'massCascrej' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:877:26: warning: variable 'sigCascrej' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:917:13: warning: variable 'massOmegaC0' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:917:26: warning: variable 'sigOmegaC0' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1031:14: warning: variable 'phiCharmBaryon' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1031:30: warning: variable 'thetaCharmBaryon' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1084:13: warning: variable 'decayLxyLam' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1084:26: warning: variable 'errDecayLxyLam' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1088:13: warning: variable 'decayLxyCasc' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1088:27: warning: variable 'errDecayLxyCasc' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1092:13: warning: variable 'decayLxyOmegac0' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1092:30: warning: variable 'errDecayLxyOmegac0' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1328:13: warning: variable 'massLam' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1328:22: warning: variable 'sigLam' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1364:13: warning: variable 'massCasc' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1364:23: warning: variable 'sigCasc' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1404:13: warning: variable 'massXiC0' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1404:23: warning: variable 'sigXiC0' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1552:13: warning: variable 'decayLxyLam' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1552:26: warning: variable 'errDecayLxyLam' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1556:13: warning: variable 'decayLxyCasc' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1556:27: warning: variable 'errDecayLxyCasc' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1560:13: warning: variable 'decayLxyXic0' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1560:27: warning: variable 'errDecayLxyXic0' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1760:13: warning: variable 'massLam' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1760:22: warning: variable 'sigLam' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1795:13: warning: variable 'massCasc' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1795:23: warning: variable 'sigCasc' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1796:13: warning: variable 'massCascrej' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1796:26: warning: variable 'sigCascrej' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1833:13: warning: variable 'massOmegaKa' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1833:26: warning: variable 'sigOmegaKa' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1934:13: warning: variable 'decayLxyLam' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1934:26: warning: variable 'errDecayLxyLam' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1936:13: warning: variable 'decayLxyCasc' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1936:27: warning: variable 'errDecayLxyCasc' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1938:13: warning: variable 'decayLxyOmegaKa' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1938:30: warning: variable 'errDecayLxyOmegaKa' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx` ```text PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx:86:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx:348:13: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx:348:18: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx:365:13: warning: variable 'pPiFromLambda' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx:365:28: warning: variable 'pPrFromLambda' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx:365:43: warning: variable 'nSigTpcPiFromLambda' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx:365:64: warning: variable 'nSigTofPiFromLambda' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx:365:85: warning: variable 'nSigTpcPrFromLambda' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx:365:106: warning: variable 'nSigTofPrFromLambda' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx:594:13: warning: variable 'errMassXiPi0' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx:606:13: warning: variable 'errMassXiPi1' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx:617:13: warning: variable 'errMassXiPiPi' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx:640:13: warning: variable 'pPiFromLambda' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx:640:28: warning: variable 'pPrFromLambda' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx:640:43: warning: variable 'nSigTpcPiFromLambda' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx:640:64: warning: variable 'nSigTofPiFromLambda' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx:640:85: warning: variable 'nSigTpcPrFromLambda' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx:640:106: warning: variable 'nSigTofPrFromLambda' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/TableProducer/candidateCreatorXicc.cxx` ```text PWGHF/TableProducer/candidateCreatorXicc.cxx:187:16: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXicc.cxx:187:21: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXicc.cxx:228:12: warning: variable 'flag' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateCreatorXicc.cxx:229:12: warning: variable 'origin' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/TableProducer/candidateSelectorCd.cxx` ```text PWGHF/TableProducer/candidateSelectorCd.cxx:85:15: warning: member 'massCharmDeuteron' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGHF/TableProducer/candidateSelectorCd.cxx:317:34: warning: variable 'pidTrackPos1Deuteron' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateSelectorCd.cxx:318:34: warning: variable 'pidTrackPos2Deuteron' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateSelectorCd.cxx:319:34: warning: variable 'pidTrackPos1Pion' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateSelectorCd.cxx:320:34: warning: variable 'pidTrackPos2Pion' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateSelectorCd.cxx:321:34: warning: variable 'pidTrackNegKaon' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/TableProducer/candidateSelectorD0.cxx` ```text PWGHF/TableProducer/candidateSelectorD0.cxx:247:11: warning: variable 'massD0' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateSelectorD0.cxx:247:19: warning: variable 'massD0bar' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/TableProducer/candidateSelectorLc.cxx` ```text PWGHF/TableProducer/candidateSelectorLc.cxx:521:34: warning: variable 'pidTrackPos1Proton' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateSelectorLc.cxx:522:34: warning: variable 'pidTrackPos2Proton' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateSelectorLc.cxx:523:34: warning: variable 'pidTrackPos1Pion' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateSelectorLc.cxx:524:34: warning: variable 'pidTrackPos2Pion' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateSelectorLc.cxx:525:34: warning: variable 'pidTrackNegKaon' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/TableProducer/candidateSelectorXicToPKPi.cxx` ```text PWGHF/TableProducer/candidateSelectorXicToPKPi.cxx:317:34: warning: variable 'pidTrackPos1Proton' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateSelectorXicToPKPi.cxx:318:34: warning: variable 'pidTrackPos2Proton' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateSelectorXicToPKPi.cxx:319:34: warning: variable 'pidTrackPos1Pion' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateSelectorXicToPKPi.cxx:320:34: warning: variable 'pidTrackPos2Pion' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateSelectorXicToPKPi.cxx:321:34: warning: variable 'pidTrackNegKaon' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/TableProducer/candidateSelectorXicToXiPiPi.cxx` ```text PWGHF/TableProducer/candidateSelectorXicToXiPiPi.cxx:607:32: warning: variable 'statusPidPi0' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateSelectorXicToXiPiPi.cxx:608:32: warning: variable 'statusPidPi1' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateSelectorXicToXiPiPi.cxx:609:32: warning: variable 'statusPidPiXi' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateSelectorXicToXiPiPi.cxx:610:32: warning: variable 'statusPidPrLam' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/candidateSelectorXicToXiPiPi.cxx:611:32: warning: variable 'statusPidPiLam' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/TableProducer/derivedDataCreatorD0ToKPi.cxx` ```text PWGHF/TableProducer/derivedDataCreatorD0ToKPi.cxx:313:15: warning: variable 'massD0' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/derivedDataCreatorD0ToKPi.cxx:313:23: warning: variable 'massD0bar' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/TableProducer/mcPidTof.cxx` ```text PWGHF/TableProducer/mcPidTof.cxx:342:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/TableProducer/mcPidTof.cxx:460:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/TableProducer/mcPidTof.cxx:606:11: warning: Value stored to 'weight' is never read [clang-analyzer-deadcode.DeadStores] PWGHF/TableProducer/mcPidTof.cxx:727:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/TableProducer/mcPidTof.cxx:765:34: warning: member 'prodPostCalib' of type 'const std::vector' (aka 'const vector>') is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGHF/TableProducer/mcPidTof.cxx:957:33: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/TableProducer/mcPidTof.cxx:958:34: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/TableProducer/mcPidTof.cxx:965:33: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGHF/TableProducer/mcPidTof.cxx:966:34: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] ``` #### `PWGHF/TableProducer/trackIndexSkimCreator.cxx` ```text PWGHF/TableProducer/trackIndexSkimCreator.cxx:151:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/TableProducer/trackIndexSkimCreator.cxx:286:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/TableProducer/trackIndexSkimCreator.cxx:1228:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/TableProducer/trackIndexSkimCreator.cxx:2009:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGHF/TableProducer/trackIndexSkimCreator.cxx:2516:27: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGHF/TableProducer/trackIndexSkimCreator.cxx:2780:23: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGHF/TableProducer/trackIndexSkimCreator.cxx:2806:23: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGHF/TableProducer/trackIndexSkimCreator.cxx:3050:23: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGHF/TableProducer/trackIndexSkimCreator.cxx:3076:23: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGHF/TableProducer/trackIndexSkimCreator.cxx:3253:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/TableProducer/trackIndexSkimCreator.cxx:3490:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/TableProducer/trackIndexSkimCreator.cxx:4039:17: warning: uninitialized record type: 'dcaInfoXi' [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/TableProducer/treeCreatorD0ToKPi.cxx` ```text PWGHF/TableProducer/treeCreatorD0ToKPi.cxx:438:13: warning: variable 'massD0' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorD0ToKPi.cxx:438:21: warning: variable 'massD0bar' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorD0ToKPi.cxx:539:13: warning: variable 'massD0' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorD0ToKPi.cxx:539:21: warning: variable 'massD0bar' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/TableProducer/treeCreatorLcToPKPi.cxx` ```text PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:816:11: warning: variable 'chi2primProton' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:817:11: warning: variable 'chi2primPion' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:818:11: warning: variable 'dcaProtonKaon' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:819:11: warning: variable 'dcaPionKaon' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:820:11: warning: variable 'chi2GeoProtonKaon' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:821:11: warning: variable 'chi2GeoPionKaon' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:822:11: warning: variable 'mass' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:823:11: warning: variable 'valueTpcNSigmaPr' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:825:11: warning: variable 'valueTpcNSigmaPi' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:826:11: warning: variable 'valueTofNSigmaPr' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:828:11: warning: variable 'valueTofNSigmaPi' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:829:11: warning: variable 'valueTpcTofNSigmaPr' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:831:11: warning: variable 'valueTpcTofNSigmaPi' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:956:19: warning: variable 'p' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:956:22: warning: variable 'pt' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:956:26: warning: variable 'svX' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:956:31: warning: variable 'svY' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:956:36: warning: variable 'svZ' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:956:41: warning: variable 'pvX' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:956:46: warning: variable 'pvY' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:956:51: warning: variable 'pvZ' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:956:56: warning: variable 'decayLength' is not initialized [cppcoreguidelines-init-variables] PWGHF/TableProducer/treeCreatorLcToPKPi.cxx:956:69: warning: variable 'lifetime' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/TableProducer/treeCreatorOmegacSt.cxx` ```text PWGHF/TableProducer/treeCreatorOmegacSt.cxx:228:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/TableProducer/treeCreatorTccToD0D0Pi.cxx` ```text PWGHF/TableProducer/treeCreatorTccToD0D0Pi.cxx:226:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/Tasks/taskMcEfficiency.cxx` ```text PWGHF/Tasks/taskMcEfficiency.cxx:60:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] ``` #### `PWGHF/Tasks/taskMcValidation.cxx` ```text PWGHF/Tasks/taskMcValidation.cxx:224:66: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:224:85: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:224:117: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:225:94: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:225:119: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:228:67: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:228:86: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:228:118: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:229:94: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:229:119: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:233:68: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:234:95: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:238:121: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:239:125: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:240:124: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:241:120: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:242:125: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:243:127: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:244:131: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:245:130: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:246:126: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:247:131: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:250:120: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:251:124: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:252:123: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:253:119: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:254:124: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:257:163: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:258:167: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:259:166: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:260:162: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:261:167: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:262:169: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:263:173: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:264:172: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:265:168: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:266:173: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:637:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/Tasks/taskMcValidation.cxx:790:96: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:790:213: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:791:96: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:791:213: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:792:96: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:792:213: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:793:96: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:793:213: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:794:124: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:794:229: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:795:124: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:795:229: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:796:124: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:796:229: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:797:114: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:797:207: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:799:115: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:799:144: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:799:259: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:799:280: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:801:115: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:801:144: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:801:253: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:801:274: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:804:115: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:804:150: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:804:268: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:804:289: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:805:117: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:805:152: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:805:257: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:805:278: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:806:141: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:806:176: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:806:272: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:806:293: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:810:97: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:810:214: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:811:97: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:811:214: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:812:97: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:812:214: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:813:97: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:813:214: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:814:125: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:814:230: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:815:125: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:815:230: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:816:125: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:816:230: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:817:115: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:817:208: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:819:116: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:819:145: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:819:260: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:819:281: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:821:116: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:821:145: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:821:254: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:821:275: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:824:116: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:824:151: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:824:269: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:824:290: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:825:118: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:825:153: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:825:258: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:825:279: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:826:142: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:826:177: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:826:273: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:826:294: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskMcValidation.cxx:1108:13: warning: variable 'whichOrigin' is not initialized [cppcoreguidelines-init-variables] PWGHF/Tasks/taskMcValidation.cxx:1156:13: warning: variable 'whichOrigin' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGHF/Tasks/taskPidStudies.cxx` ```text PWGHF/Tasks/taskPidStudies.cxx:171:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGHF/Tasks/taskPidStudies.cxx:217:13: warning: no header providing "ZorroSummary" is directly included [misc-include-cleaner] ``` #### `PWGHF/Tasks/taskSelOptimisation.cxx` ```text PWGHF/Tasks/taskSelOptimisation.cxx:144:91: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskSelOptimisation.cxx:145:101: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskSelOptimisation.cxx:149:105: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskSelOptimisation.cxx:153:113: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskSelOptimisation.cxx:157:109: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskSelOptimisation.cxx:161:113: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskSelOptimisation.cxx:167:91: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskSelOptimisation.cxx:168:101: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskSelOptimisation.cxx:172:105: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskSelOptimisation.cxx:176:109: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskSelOptimisation.cxx:180:113: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGHF/Tasks/taskSelOptimisation.cxx:292:53: warning: comparison of integers of different signs: 'int' and 'unsigned long long' [clang-diagnostic-sign-compare] PWGHF/Tasks/taskSelOptimisation.cxx:295:15: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGHF/Tasks/taskSelOptimisation.cxx:305:15: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGHF/Tasks/taskSelOptimisation.cxx:316:13: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGHF/Tasks/taskSelOptimisation.cxx:348:53: warning: comparison of integers of different signs: 'int' and 'unsigned long long' [clang-diagnostic-sign-compare] PWGHF/Tasks/taskSelOptimisation.cxx:351:15: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGHF/Tasks/taskSelOptimisation.cxx:367:15: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGHF/Tasks/taskSelOptimisation.cxx:384:13: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ``` ### PWGJE #### `PWGJE/Core/FastJetUtilities.h` ```text PWGJE/Core/FastJetUtilities.h:53:3: warning: annotate this function with 'override' or (rarely) 'final' [cppcoreguidelines-explicit-virtual-functions] ``` #### `PWGJE/Core/JetBkgSubUtils.cxx` ```text PWGJE/Core/JetBkgSubUtils.cxx:18:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] ``` #### `PWGJE/Core/JetFindingUtilities.h` ```text PWGJE/Core/JetFindingUtilities.h:108:14: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] ``` #### `PWGJE/Core/JetMatchingUtilities.h` ```text PWGJE/Core/JetMatchingUtilities.h:538:9: warning: variable 'ptSumBase' is not initialized [cppcoreguidelines-init-variables] PWGJE/Core/JetMatchingUtilities.h:539:9: warning: variable 'ptSumTag' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGJE/Core/JetTaggingUtilities.h` ```text PWGJE/Core/JetTaggingUtilities.h:566:11: warning: variable 'varSignImpSig' is not initialized [cppcoreguidelines-init-variables] PWGJE/Core/JetTaggingUtilities.h:879:7: warning: uninitialized record type: 'posi' [cppcoreguidelines-pro-type-member-init] PWGJE/Core/JetTaggingUtilities.h:879:7: warning: uninitialized record type: 'posj' [cppcoreguidelines-pro-type-member-init] ``` #### `PWGJE/Core/JetUtilities.h` ```text PWGJE/Core/JetUtilities.h:189:16: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] ``` #### `PWGJE/Core/MlResponseHfTagging.h` ```text PWGJE/Core/MlResponseHfTagging.h:365:8: warning: no header providing "std::function" is directly included [misc-include-cleaner] ``` #### `PWGJE/Core/emcalCrossTalkEmulation.cxx` ```text PWGJE/Core/emcalCrossTalkEmulation.cxx:23:1: warning: included header HistogramRegistry.h is not used directly [misc-include-cleaner] PWGJE/Core/emcalCrossTalkEmulation.cxx:40:1: warning: included header TH1.h is not used directly [misc-include-cleaner] PWGJE/Core/emcalCrossTalkEmulation.cxx:488:15: warning: no header providing "int32_t" is directly included [misc-include-cleaner] ``` #### `PWGJE/Core/emcalCrossTalkEmulation.h` ```text PWGJE/Core/emcalCrossTalkEmulation.h:24:1: warning: included header HistogramRegistry.h is not used directly [misc-include-cleaner] PWGJE/Core/emcalCrossTalkEmulation.h:26:1: warning: included header TH1.h is not used directly [misc-include-cleaner] PWGJE/Core/emcalCrossTalkEmulation.h:143:5: warning: no header providing "LOG" is directly included [misc-include-cleaner] ``` #### `PWGJE/DataModel/EMCALClusterDefinition.h` ```text PWGJE/DataModel/EMCALClusterDefinition.h:31:8: warning: constructor does not initialize these fields: algorithm [cppcoreguidelines-pro-type-member-init] ``` #### `PWGJE/DataModel/GammaJetAnalysisTree.h` ```text PWGJE/DataModel/GammaJetAnalysisTree.h:20:1: warning: included header JetDerivedDataUtilities.h is not used directly [misc-include-cleaner] PWGJE/DataModel/GammaJetAnalysisTree.h:21:1: warning: included header EMCALClusters.h is not used directly [misc-include-cleaner] PWGJE/DataModel/GammaJetAnalysisTree.h:22:1: warning: included header Jet.h is not used directly [misc-include-cleaner] PWGJE/DataModel/GammaJetAnalysisTree.h:62:40: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGJE/DataModel/GammaJetAnalysisTree.h:89:36: warning: no header providing "ushort" is directly included [misc-include-cleaner] PWGJE/DataModel/GammaJetAnalysisTree.h:106:36: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGJE/DataModel/GammaJetAnalysisTree.h:146:53: warning: no header providing "std::vector" is directly included [misc-include-cleaner] ``` #### `PWGJE/DataModel/JetReducedData.h` ```text PWGJE/DataModel/JetReducedData.h:376:100: warning: no header providing "o2::aod::mcparticle::enums::ProducedByTransport" is directly included [misc-include-cleaner] PWGJE/DataModel/JetReducedData.h:378:100: warning: no header providing "o2::aod::mcparticle::enums::FromBackgroundEvent" is directly included [misc-include-cleaner] PWGJE/DataModel/JetReducedData.h:382:167: warning: no header providing "o2::mcgenstatus::getGenStatusCode" is directly included [misc-include-cleaner] PWGJE/DataModel/JetReducedData.h:384:167: warning: no header providing "o2::mcgenstatus::getHepMCStatusCode" is directly included [misc-include-cleaner] PWGJE/DataModel/JetReducedData.h:386:100: warning: no header providing "o2::aod::mcparticle::enums::PhysicalPrimary" is directly included [misc-include-cleaner] ``` #### `PWGJE/DataModel/JetReducedDataDQ.h` ```text PWGJE/DataModel/JetReducedDataDQ.h:97:100: warning: no header providing "o2::aod::mcparticle::enums::ProducedByTransport" is directly included [misc-include-cleaner] PWGJE/DataModel/JetReducedDataDQ.h:99:100: warning: no header providing "o2::aod::mcparticle::enums::FromBackgroundEvent" is directly included [misc-include-cleaner] PWGJE/DataModel/JetReducedDataDQ.h:103:167: warning: no header providing "o2::mcgenstatus::getGenStatusCode" is directly included [misc-include-cleaner] PWGJE/DataModel/JetReducedDataDQ.h:105:167: warning: no header providing "o2::mcgenstatus::getHepMCStatusCode" is directly included [misc-include-cleaner] PWGJE/DataModel/JetReducedDataDQ.h:107:100: warning: no header providing "o2::aod::mcparticle::enums::PhysicalPrimary" is directly included [misc-include-cleaner] ``` #### `PWGJE/DataModel/JetReducedDataV0.h` ```text PWGJE/DataModel/JetReducedDataV0.h:85:100: warning: no header providing "o2::aod::mcparticle::enums::ProducedByTransport" is directly included [misc-include-cleaner] PWGJE/DataModel/JetReducedDataV0.h:87:100: warning: no header providing "o2::aod::mcparticle::enums::FromBackgroundEvent" is directly included [misc-include-cleaner] PWGJE/DataModel/JetReducedDataV0.h:91:167: warning: no header providing "o2::mcgenstatus::getGenStatusCode" is directly included [misc-include-cleaner] PWGJE/DataModel/JetReducedDataV0.h:93:167: warning: no header providing "o2::mcgenstatus::getHepMCStatusCode" is directly included [misc-include-cleaner] PWGJE/DataModel/JetReducedDataV0.h:95:100: warning: no header providing "o2::aod::mcparticle::enums::PhysicalPrimary" is directly included [misc-include-cleaner] ``` #### `PWGJE/DataModel/PhotonChargedTriggerCorrelation.h` ```text PWGJE/DataModel/PhotonChargedTriggerCorrelation.h:22:1: warning: included header PCMUtilities.h is not used directly [misc-include-cleaner] PWGJE/DataModel/PhotonChargedTriggerCorrelation.h:23:1: warning: included header JetDerivedDataUtilities.h is not used directly [misc-include-cleaner] PWGJE/DataModel/PhotonChargedTriggerCorrelation.h:34:64: warning: no header providing "o2::aod::JCollisions" is directly included [misc-include-cleaner] PWGJE/DataModel/PhotonChargedTriggerCorrelation.h:35:68: warning: no header providing "o2::aod::JMcCollisions" is directly included [misc-include-cleaner] ``` #### `PWGJE/JetFinders/jetFinder.h` ```text PWGJE/JetFinders/jetFinder.h:50:8: warning: constructor does not initialize these fields: pdgDatabase [cppcoreguidelines-pro-type-member-init] ``` #### `PWGJE/JetFinders/jetFinderHF.h` ```text PWGJE/JetFinders/jetFinderHF.h:49:8: warning: constructor does not initialize these fields: pdgDatabase [cppcoreguidelines-pro-type-member-init] ``` #### `PWGJE/JetFinders/jetFinderHFHFBar.h` ```text PWGJE/JetFinders/jetFinderHFHFBar.h:49:8: warning: constructor does not initialize these fields: pdgDatabase [cppcoreguidelines-pro-type-member-init] ``` #### `PWGJE/JetFinders/jetFinderV0.h` ```text PWGJE/JetFinders/jetFinderV0.h:45:8: warning: constructor does not initialize these fields: pdgDatabase, candIndex [cppcoreguidelines-pro-type-member-init] ``` #### `PWGJE/TableProducer/derivedDataProducer.cxx` ```text PWGJE/TableProducer/derivedDataProducer.cxx:71:8: warning: constructor does not initialize these fields: ccdb, lut, pdgDatabase, runNumber, hadronicRate, withCollisionAssociator [cppcoreguidelines-pro-type-member-init] PWGJE/TableProducer/derivedDataProducer.cxx:279:44: warning: no header providing "udhelpers::compatibleBCs" is directly included [misc-include-cleaner] PWGJE/TableProducer/derivedDataProducer.cxx:420:11: warning: variable 'sigmaDCAXYZ2' is not initialized [cppcoreguidelines-init-variables] PWGJE/TableProducer/derivedDataProducer.cxx:448:17: warning: variable 'sigmaDCAXYZ2' is not initialized [cppcoreguidelines-init-variables] PWGJE/TableProducer/derivedDataProducer.cxx:469:17: warning: variable 'sigmaDCAXYZ' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGJE/TableProducer/derivedDataWriter.cxx` ```text PWGJE/TableProducer/derivedDataWriter.cxx:50:8: warning: constructor does not initialize these fields: precisionPositionMask, precisionMomentumMask [cppcoreguidelines-pro-type-member-init] ``` #### `PWGJE/TableProducer/emcalClusterHadronicCorrectionTask.cxx` ```text PWGJE/TableProducer/emcalClusterHadronicCorrectionTask.cxx:29:1: warning: included header TVector2.h is not used directly [misc-include-cleaner] PWGJE/TableProducer/emcalClusterHadronicCorrectionTask.cxx:121:14: warning: variable 'clusterE1' is not initialized [cppcoreguidelines-init-variables] PWGJE/TableProducer/emcalClusterHadronicCorrectionTask.cxx:122:14: warning: variable 'clusterE2' is not initialized [cppcoreguidelines-init-variables] PWGJE/TableProducer/emcalClusterHadronicCorrectionTask.cxx:123:14: warning: variable 'clusterEAll1' is not initialized [cppcoreguidelines-init-variables] PWGJE/TableProducer/emcalClusterHadronicCorrectionTask.cxx:124:14: warning: variable 'clusterEAll2' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGJE/TableProducer/emcalCorrectionTask.cxx` ```text PWGJE/TableProducer/emcalCorrectionTask.cxx:96:8: warning: constructor does not initialize these fields: mCcdbManager, geometry, mArrGainCalibDiff [cppcoreguidelines-pro-type-member-init] PWGJE/TableProducer/emcalCorrectionTask.cxx:1563:26: warning: loop variable has narrower type 'uint16_t' than iteration's upper bound 'size_type' [bugprone-too-small-loop-variable] ``` #### `PWGJE/TableProducer/eventwiseConstituentSubtractor.cxx` ```text PWGJE/TableProducer/eventwiseConstituentSubtractor.cxx:42:8: warning: constructor does not initialize these fields: pdgDatabase [cppcoreguidelines-pro-type-member-init] PWGJE/TableProducer/eventwiseConstituentSubtractor.cxx:116:14: warning: no header providing "fastjet::GhostedAreaSpec" is directly included [misc-include-cleaner] PWGJE/TableProducer/eventwiseConstituentSubtractor.cxx:170:183: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] ``` #### `PWGJE/TableProducer/jetTaggerHF.cxx` ```text PWGJE/TableProducer/jetTaggerHF.cxx:282:15: warning: variable 'dbRange' is not initialized [cppcoreguidelines-init-variables] PWGJE/TableProducer/jetTaggerHF.cxx:532:37: warning: no header providing "TH2" is directly included [misc-include-cleaner] ``` #### `PWGJE/TableProducer/luminosityProducer.cxx` ```text PWGJE/TableProducer/luminosityProducer.cxx:32:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGJE/TableProducer/luminosityProducer.cxx:34:1: warning: included header iterator is not used directly [misc-include-cleaner] ``` #### `PWGJE/TableProducer/mcOutlierRejector.cxx` ```text PWGJE/TableProducer/mcOutlierRejector.cxx:21:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGJE/TableProducer/mcOutlierRejector.cxx:24:1: warning: included header InitContext.h is not used directly [misc-include-cleaner] PWGJE/TableProducer/mcOutlierRejector.cxx:46:49: warning: no header providing "jetderiveddatautilities::initialiseTrackSelection" is directly included [misc-include-cleaner] PWGJE/TableProducer/mcOutlierRejector.cxx:63:27: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGJE/TableProducer/mcOutlierRejector.cxx:63:150: warning: no header providing "std::optional" is directly included [misc-include-cleaner] PWGJE/TableProducer/mcOutlierRejector.cxx:63:164: warning: no header providing "std::reference_wrapper" is directly included [misc-include-cleaner] PWGJE/TableProducer/mcOutlierRejector.cxx:63:267: warning: no header providing "std::nullopt" is directly included [misc-include-cleaner] PWGJE/TableProducer/mcOutlierRejector.cxx:67:41: warning: no header providing "std::decay_t" is directly included [misc-include-cleaner] PWGJE/TableProducer/mcOutlierRejector.cxx:75:34: warning: unchecked access to optional value [bugprone-unchecked-optional-access] PWGJE/TableProducer/mcOutlierRejector.cxx:82:56: warning: no header providing "jetderiveddatautilities::JCollisionSubGeneratorId" is directly included [misc-include-cleaner] ``` #### `PWGJE/TableProducer/rhoEstimator.cxx` ```text PWGJE/TableProducer/rhoEstimator.cxx:45:8: warning: constructor does not initialize these fields: bkgPhiMax_, bkgPhiMin_, pdgDatabase [cppcoreguidelines-pro-type-member-init] PWGJE/TableProducer/rhoEstimator.cxx:144:14: warning: no header providing "fastjet::GhostedAreaSpec" is directly included [misc-include-cleaner] ``` #### `PWGJE/TableProducer/secondaryVertexReconstruction.cxx` ```text PWGJE/TableProducer/secondaryVertexReconstruction.cxx:59:8: warning: constructor does not initialize these fields: ccdb, lut [cppcoreguidelines-pro-type-member-init] PWGJE/TableProducer/secondaryVertexReconstruction.cxx:219:7: warning: uninitialized record type: 'arrayMomenta' [cppcoreguidelines-pro-type-member-init] PWGJE/TableProducer/secondaryVertexReconstruction.cxx:233:14: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGJE/TableProducer/secondaryVertexReconstruction.cxx:233:19: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] PWGJE/TableProducer/secondaryVertexReconstruction.cxx:239:7: warning: uninitialized record type: 'massArray' [cppcoreguidelines-pro-type-member-init] PWGJE/TableProducer/secondaryVertexReconstruction.cxx:248:27: warning: 'arrayMomenta' used after it was moved [bugprone-use-after-move] PWGJE/TableProducer/secondaryVertexReconstruction.cxx:257:27: warning: 'arrayMomenta' used after it was moved [bugprone-use-after-move] ``` #### `PWGJE/Tasks/bjetTaggingGnn.cxx` ```text PWGJE/Tasks/bjetTaggingGnn.cxx:23:1: warning: included header TriggerAliases.h is not used directly [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:38:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:42:1: warning: included header type_traits is not used directly [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:115:8: warning: constructor does not initialize these fields: pdg, ccdb [cppcoreguidelines-pro-type-member-init] PWGJE/Tasks/bjetTaggingGnn.cxx:166:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:169:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:197:38: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:249:68: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:414:41: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:414:58: warning: no header providing "o2::aod::PVMults" is directly included [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:419:41: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:419:54: warning: no header providing "o2::aod::TracksCov" is directly included [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:419:70: warning: no header providing "o2::aod::TrackSelection" is directly included [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:419:91: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:419:107: warning: no header providing "o2::aod::TracksDCACov" is directly included [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:419:126: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:920:28: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:1102:34: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:1109:40: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:1111:42: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:1113:44: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:1126:55: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGJE/Tasks/bjetTaggingGnn.cxx:1128:57: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/bjetTreeCreator.cxx` ```text PWGJE/Tasks/bjetTreeCreator.cxx:456:45: warning: no header providing "M_PI" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/emcCellMonitor.cxx` ```text PWGJE/Tasks/emcCellMonitor.cxx:125:11: warning: variable 'bcid' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/emcCellMonitor.cxx:135:11: warning: variable 'bcid' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/emcCellMonitor.cxx:283:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ``` #### `PWGJE/Tasks/emcClusterMonitor.cxx` ```text PWGJE/Tasks/emcClusterMonitor.cxx:148:11: warning: variable 'bcid' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/emcClusterMonitor.cxx:158:11: warning: variable 'bcid' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/emcClusterMonitor.cxx:207:5: warning: uninitialized record type: 'numberOfClustersSM' [cppcoreguidelines-pro-type-member-init] PWGJE/Tasks/emcClusterMonitor.cxx:314:5: warning: uninitialized record type: 'numberOfClustersSM' [cppcoreguidelines-pro-type-member-init] ``` #### `PWGJE/Tasks/emcEventSelectionQA.cxx` ```text PWGJE/Tasks/emcEventSelectionQA.cxx:53:13: warning: member 'mRun3MinNumber' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] ``` #### `PWGJE/Tasks/emcTmMonitor.cxx` ```text PWGJE/Tasks/emcTmMonitor.cxx:188:11: warning: variable 'bcid' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/emcTmMonitor.cxx:198:11: warning: variable 'bcid' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/emcTmMonitor.cxx:248:14: warning: variable 'trackEta' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/emcTmMonitor.cxx:248:24: warning: variable 'trackPhi' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/emcTmMonitor.cxx:287:13: warning: variable 'dEta' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/emcTmMonitor.cxx:287:19: warning: variable 'dPhi' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/emcTmMonitor.cxx:287:25: warning: variable 'pT' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/emcTmMonitor.cxx:287:29: warning: variable 'abs_p' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/emcTmMonitor.cxx:287:36: warning: variable 'trackEta' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/emcTmMonitor.cxx:287:46: warning: variable 'trackPhi' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/emcTmMonitor.cxx:287:56: warning: variable 'nSigmaEl' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/emcTmMonitor.cxx:288:11: warning: variable 'supermoduleID' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGJE/Tasks/emcalGammaGammaBcWise.cxx` ```text PWGJE/Tasks/emcalGammaGammaBcWise.cxx:131:8: warning: constructor does not initialize these fields: emcalGeom [cppcoreguidelines-pro-type-member-init] ``` #### `PWGJE/Tasks/emcalPi0EnergyScaleCalib.cxx` ```text PWGJE/Tasks/emcalPi0EnergyScaleCalib.cxx:146:3: warning: constructor does not initialize these fields: row, col, supermodulecategory [cppcoreguidelines-pro-type-member-init] PWGJE/Tasks/emcalPi0EnergyScaleCalib.cxx:195:8: warning: constructor does not initialize these fields: NAcceptanceCategories [cppcoreguidelines-pro-type-member-init] PWGJE/Tasks/emcalPi0EnergyScaleCalib.cxx:368:9: warning: variable 'row' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/emcalPi0EnergyScaleCalib.cxx:368:14: warning: variable 'col' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/emcalPi0EnergyScaleCalib.cxx:405:9: warning: variable 'row' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/emcalPi0EnergyScaleCalib.cxx:405:14: warning: variable 'col' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGJE/Tasks/fullJetSpectra.cxx` ```text PWGJE/Tasks/fullJetSpectra.cxx:35:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] PWGJE/Tasks/fullJetSpectra.cxx:59:8: warning: constructor does not initialize these fields: pdgDatabase, ccdb [cppcoreguidelines-pro-type-member-init] PWGJE/Tasks/fullJetSpectra.cxx:131:15: warning: member 'kLeadingTrackPtMinThreshold' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGJE/Tasks/fullJetSpectra.cxx:132:15: warning: member 'kLeadingTrackPtMaxThreshold' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGJE/Tasks/fullJetSpectra.cxx:133:15: warning: member 'kLeadingClusterPtMinThreshold' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGJE/Tasks/fullJetSpectra.cxx:134:15: warning: member 'kLeadingClusterPtMaxThreshold' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGJE/Tasks/fullJetSpectra.cxx:742:43: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGJE/Tasks/fullJetSpectra.cxx:742:64: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGJE/Tasks/fullJetSpectra.cxx:742:98: warning: no header providing "o2::aod::evsel::foundBCId" is directly included [misc-include-cleaner] PWGJE/Tasks/fullJetSpectra.cxx:1144:42: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGJE/Tasks/fullJetSpectra.cxx:1144:56: warning: no header providing "o2::aod::BcSels" is directly included [misc-include-cleaner] PWGJE/Tasks/fullJetSpectra.cxx:1151:40: warning: no header providing "o2::aod::evsel::EventSelectionFlags" is directly included [misc-include-cleaner] PWGJE/Tasks/fullJetSpectra.cxx:1163:53: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGJE/Tasks/fullJetSpectra.cxx:1167:57: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGJE/Tasks/fullJetSpectra.cxx:1169:59: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGJE/Tasks/fullJetSpectra.cxx:1342:7: warning: Value stored to 'eventAccepted' is never read [clang-analyzer-deadcode.DeadStores] PWGJE/Tasks/fullJetSpectra.cxx:1346:7: warning: Value stored to 'eventAccepted' is never read [clang-analyzer-deadcode.DeadStores] PWGJE/Tasks/fullJetSpectra.cxx:1351:7: warning: Value stored to 'eventAccepted' is never read [clang-analyzer-deadcode.DeadStores] ``` #### `PWGJE/Tasks/fullJetTriggerQATask.cxx` ```text PWGJE/Tasks/fullJetTriggerQATask.cxx:41:1: warning: included header PseudoJet.hh is not used directly [misc-include-cleaner] PWGJE/Tasks/fullJetTriggerQATask.cxx:823:5: warning: uninitialized record type: 'foundMaxJet' [cppcoreguidelines-pro-type-member-init] ``` #### `PWGJE/Tasks/gammaJetTreeProducer.cxx` ```text PWGJE/Tasks/gammaJetTreeProducer.cxx:28:1: warning: included header JetFindingUtilities.h is not used directly [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:29:1: warning: included header JetSubstructureUtilities.h is not used directly [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:30:1: warning: included header JetUtilities.h is not used directly [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:31:1: warning: included header EMCALClusters.h is not used directly [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:36:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:37:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:38:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:39:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:40:1: warning: included header filterTables.h is not used directly [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:42:1: warning: included header InteractionRecord.h is not used directly [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:43:1: warning: included header AnalysisCluster.h is not used directly [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:44:1: warning: included header Cell.h is not used directly [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:45:1: warning: included header Constants.h is not used directly [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:46:1: warning: included header Geometry.h is not used directly [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:47:1: warning: included header BadChannelMap.h is not used directly [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:65:44: warning: no header providing "o2::aod::JClusters" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:65:64: warning: no header providing "o2::aod::JClusterTracks" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:66:46: warning: no header providing "o2::aod::JMcClusterLbs" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:70:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGJE/Tasks/gammaJetTreeProducer.cxx:74:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:86:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:93:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:109:13: warning: member 'kMaxRecursionDepth' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGJE/Tasks/gammaJetTreeProducer.cxx:111:22: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:123:3: warning: no header providing "TKDTree" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:127:24: warning: no header providing "fastjet::PseudoJet" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:141:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:143:24: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:144:20: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:152:41: warning: no header providing "fastjet::JetAlgorithm" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:164:55: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:228:11: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:231:23: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:253:48: warning: no header providing "std::decay_t" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:435:50: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:503:54: warning: no header providing "o2::aod::JMcParticles" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:627:3: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:631:7: warning: no header providing "SETBIT" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:899:43: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:915:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:973:60: warning: no header providing "o2::aod::BkgChargedRhos" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:973:81: warning: no header providing "o2::aod::JCollisionBCs" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:984:36: warning: no header providing "o2::aod::JMcCollisions" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:984:56: warning: no header providing "o2::aod::BkgChargedMcRhos" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:990:94: warning: no header providing "o2::aod::JMcCollisionLbs" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:1018:14: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:1032:25: warning: no header providing "o2::aod::JEMCTracks" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:1032:72: warning: no header providing "o2::aod::jemctrack::trackId" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:1080:113: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:1168:5: warning: no header providing "ushort" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:1207:14: warning: no header providing "fastjet::ClusterSequenceArea" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:1208:22: warning: no header providing "fastjet::sorted_by_pt" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:1221:14: warning: no header providing "std::swap" is directly included [misc-include-cleaner] PWGJE/Tasks/gammaJetTreeProducer.cxx:1266:76: warning: no header providing "o2::aod::jmcparticle::mcCollisionId" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/hadronPhotonCorrelation.cxx` ```text PWGJE/Tasks/hadronPhotonCorrelation.cxx:42:1: warning: included header TClonesArray.h is not used directly [misc-include-cleaner] PWGJE/Tasks/hadronPhotonCorrelation.cxx:62:8: warning: constructor does not initialize these fields: ptMinTrig, ptMaxTrig, ptMinAssoc, ptMaxAssoc, pdg [cppcoreguidelines-pro-type-member-init] PWGJE/Tasks/hadronPhotonCorrelation.cxx:76:13: warning: member 'pidCodeHadronCut' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGJE/Tasks/hadronPhotonCorrelation.cxx:77:13: warning: member 'pythiaCodeIncomingHard' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGJE/Tasks/hadronPhotonCorrelation.cxx:78:13: warning: member 'pythiaCodeOutgoingHard' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGJE/Tasks/hadronPhotonCorrelation.cxx:79:13: warning: member 'pythiaCodeOutgoingDiff' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGJE/Tasks/hadronPhotonCorrelation.cxx:162:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGJE/Tasks/hadronPhotonCorrelation.cxx:170:18: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGJE/Tasks/hadronPhotonCorrelation.cxx:736:11: warning: variable 'photonGeneration' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGJE/Tasks/hfDebug.cxx` ```text PWGJE/Tasks/hfDebug.cxx:17:1: warning: included header utilsMcGen.h is not used directly [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:18:1: warning: included header FastJetUtilities.h is not used directly [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:19:1: warning: included header JetDerivedDataUtilities.h is not used directly [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:20:1: warning: included header Jet.h is not used directly [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:22:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:24:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:26:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:41:86: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:47:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:47:21: warning: no header providing "o2::aod::HfD0Bases" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:48:21: warning: no header providing "o2::aod::HfD0CollBases" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:49:21: warning: no header providing "o2::aod::HfD0CollIds" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:50:21: warning: no header providing "o2::aod::HfD0McCollBases" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:51:21: warning: no header providing "o2::aod::HfD0McCollIds" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:52:21: warning: no header providing "o2::aod::HfD0McRCollIds" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:53:21: warning: no header providing "o2::aod::HfD0PBases" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:54:21: warning: no header providing "o2::aod::HfD0PIds" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:55:21: warning: no header providing "o2::aod::HfD0Pars" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:56:21: warning: no header providing "o2::aod::HfD0ParEs" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:57:21: warning: no header providing "o2::aod::HfD0Sels" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:58:21: warning: no header providing "o2::aod::HfD0Mls" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:59:21: warning: no header providing "o2::aod::HfD0Ids" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:60:21: warning: no header providing "o2::aod::HfD0Mcs" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:62:21: warning: no header providing "o2::aod::HfLcBases" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:63:21: warning: no header providing "o2::aod::HfLcCollBases" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:64:21: warning: no header providing "o2::aod::HfLcCollIds" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:65:21: warning: no header providing "o2::aod::HfLcMcCollBases" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:66:21: warning: no header providing "o2::aod::HfLcMcCollIds" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:67:21: warning: no header providing "o2::aod::HfLcMcRCollIds" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:68:21: warning: no header providing "o2::aod::HfLcPBases" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:69:21: warning: no header providing "o2::aod::HfLcPIds" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:70:21: warning: no header providing "o2::aod::HfLcPars" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:71:21: warning: no header providing "o2::aod::HfLcParEs" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:72:21: warning: no header providing "o2::aod::HfLcSels" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:73:21: warning: no header providing "o2::aod::HfLcMls" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:74:21: warning: no header providing "o2::aod::HfLcIds" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:75:21: warning: no header providing "o2::aod::HfLcMcs" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:77:21: warning: no header providing "o2::aod::BkgChargedRhos" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:78:21: warning: no header providing "o2::aod::BkgChargedMcRhos" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:79:21: warning: no header providing "o2::aod::BkgD0Rhos" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:80:21: warning: no header providing "o2::aod::BkgD0McRhos" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:81:21: warning: no header providing "o2::aod::BkgLcRhos" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:82:21: warning: no header providing "o2::aod::BkgLcMcRhos" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:84:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:88:13: warning: member 'nCycles' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGJE/Tasks/hfDebug.cxx:91:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:116:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:136:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:136:55: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:169:140: warning: no header providing "o2::constants::physics::MassD0" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:179:19: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:182:163: warning: no header providing "o2::hf_decay::hf_cand_2prong::DecayChannelMain" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:259:140: warning: no header providing "o2::constants::physics::MassLambdaCPlus" is directly included [misc-include-cleaner] PWGJE/Tasks/hfDebug.cxx:272:163: warning: no header providing "o2::hf_decay::hf_cand_3prong::DecayChannelMain" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/jetBackgroundAnalysis.cxx` ```text PWGJE/Tasks/jetBackgroundAnalysis.cxx:33:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetBackgroundAnalysis.cxx:124:76: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGJE/Tasks/jetBackgroundAnalysis.cxx:128:120: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/jetChCorr.cxx` ```text PWGJE/Tasks/jetChCorr.cxx:51:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGJE/Tasks/jetChCorr.cxx:63:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] ``` #### `PWGJE/Tasks/jetChargedV2.cxx` ```text PWGJE/Tasks/jetChargedV2.cxx:16:1: warning: included header FastJetUtilities.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:18:1: warning: included header JetFinder.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:24:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:25:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:27:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:28:1: warning: included header filterTables.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:30:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:36:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:37:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:38:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:41:1: warning: included header TComplex.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:42:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:43:1: warning: included header TH2D.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:45:1: warning: included header THnSparse.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:48:1: warning: included header TVector2.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:51:1: warning: included header chrono is not used directly [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:60:8: warning: constructor does not initialize these fields: detId, refAId, refBId [cppcoreguidelines-pro-type-member-init] PWGJE/Tasks/jetChargedV2.cxx:61:70: warning: no header providing "o2::aod::BkgChargedMcRhos" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:68:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:70:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:110:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:114:52: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:181:3: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:188:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:233:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:250:78: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:309:49: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:310:12: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:311:22: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:345:156: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:506:36: warning: no header providing "o2::aod::jtrack::pt" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:506:101: warning: no header providing "o2::aod::jtrack::eta" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:507:45: warning: no header providing "o2::aod::jcollision::posZ" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:508:49: warning: no header providing "o2::aod::jmccollision::posZ" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:510:70: warning: no header providing "o2::aod::jtrack::collisionId" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:512:107: warning: no header providing "o2::aod::jmccollisionlb::mcCollisionId" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:862:16: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:914:18: warning: variable 'phiMinusPsi2' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetChargedV2.cxx:919:52: warning: no header providing "o2::constants::math::PIQuarter" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:927:18: warning: variable 'phiMinusPsi3' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetChargedV2.cxx:992:18: warning: variable 'phiMinusPsi2' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetChargedV2.cxx:1005:18: warning: variable 'phiMinusPsi3' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetChargedV2.cxx:1077:71: warning: no header providing "std::decay_t" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:1150:18: warning: variable 'corrTagjetpt' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetChargedV2.cxx:1229:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:1231:83: warning: no header providing "o2::aod::JMcCollisionLbs" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:1281:75: warning: no header providing "o2::aod::BkgChargedRhos" is directly included [misc-include-cleaner] PWGJE/Tasks/jetChargedV2.cxx:1370:16: warning: variable 'phiMinusPsi2' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetChargedV2.cxx:1397:16: warning: variable 'phiMinusPsi3' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetChargedV2.cxx:1501:16: warning: variable 'phiMinusPsi2' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetChargedV2.cxx:1528:16: warning: variable 'phiMinusPsi3' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetChargedV2.cxx:1722:18: warning: variable 'phiMinusPsi2' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetChargedV2.cxx:1739:18: warning: variable 'phiMinusPsi3' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetChargedV2.cxx:1765:16: warning: variable 'rcPhiPsi2' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetChargedV2.cxx:2016:18: warning: variable 'phiMinusPsi2' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetChargedV2.cxx:2032:18: warning: variable 'phiMinusPsi3' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetChargedV2.cxx:2058:16: warning: variable 'rcPhiPsi2' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetChargedV2.cxx:2253:9: warning: Value stored to 'leadingJetPt' is never read [clang-analyzer-deadcode.DeadStores] PWGJE/Tasks/jetChargedV2.cxx:2320:13: warning: variable 'tempparaA' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetChargedV2.cxx:2340:69: warning: no header providing "o2::aod::JTrackExtras" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/jetCrossSectionEfficiency.cxx` ```text PWGJE/Tasks/jetCrossSectionEfficiency.cxx:41:21: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGJE/Tasks/jetCrossSectionEfficiency.cxx:139:22: warning: no header providing "std::pair" is directly included [misc-include-cleaner] PWGJE/Tasks/jetCrossSectionEfficiency.cxx:178:53: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGJE/Tasks/jetCrossSectionEfficiency.cxx:196:58: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGJE/Tasks/jetCrossSectionEfficiency.cxx:233:66: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGJE/Tasks/jetCrossSectionEfficiency.cxx:296:19: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/jetDebug.cxx` ```text PWGJE/Tasks/jetDebug.cxx:17:1: warning: included header FastJetUtilities.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetDebug.cxx:22:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetDebug.cxx:23:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetDebug.cxx:40:86: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGJE/Tasks/jetDebug.cxx:94:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGJE/Tasks/jetDebug.cxx:94:21: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGJE/Tasks/jetDebug.cxx:97:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGJE/Tasks/jetDebug.cxx:100:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGJE/Tasks/jetDebug.cxx:119:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGJE/Tasks/jetDebug.cxx:136:138: warning: no header providing "o2::aod::JTracks" is directly included [misc-include-cleaner] PWGJE/Tasks/jetDebug.cxx:154:53: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGJE/Tasks/jetDebug.cxx:154:65: warning: no header providing "TMath::Power" is directly included [misc-include-cleaner] PWGJE/Tasks/jetDebug.cxx:154:132: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGJE/Tasks/jetDebug.cxx:231:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGJE/Tasks/jetDebug.cxx:292:31: warning: no header providing "o2::aod::JMcCollision" is directly included [misc-include-cleaner] PWGJE/Tasks/jetDebug.cxx:292:157: warning: no header providing "o2::aod::JMcParticles" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/jetDsSpectrumAndSubstructure.cxx` ```text PWGJE/Tasks/jetDsSpectrumAndSubstructure.cxx:20:1: warning: included header DecayChannels.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetDsSpectrumAndSubstructure.cxx:25:1: warning: included header JetSubtraction.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetDsSpectrumAndSubstructure.cxx:27:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetDsSpectrumAndSubstructure.cxx:28:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetDsSpectrumAndSubstructure.cxx:33:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetDsSpectrumAndSubstructure.cxx:37:1: warning: included header DataProcessorSpec.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetDsSpectrumAndSubstructure.cxx:120:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/jetFinderFullQA.cxx` ```text PWGJE/Tasks/jetFinderFullQA.cxx:49:8: warning: constructor does not initialize these fields: pdgDatabase [cppcoreguidelines-pro-type-member-init] ``` #### `PWGJE/Tasks/jetFinderQA.cxx` ```text PWGJE/Tasks/jetFinderQA.cxx:1133:13: warning: Variable 'pt' with floating point type 'double' should not be used as a loop counter [clang-analyzer-security.FloatLoopCounter] PWGJE/Tasks/jetFinderQA.cxx:1139:13: warning: Variable 'pt' with floating point type 'double' should not be used as a loop counter [clang-analyzer-security.FloatLoopCounter] PWGJE/Tasks/jetFinderQA.cxx:1145:13: warning: Variable 'pt' with floating point type 'double' should not be used as a loop counter [clang-analyzer-security.FloatLoopCounter] ``` #### `PWGJE/Tasks/jetFormationTimeReclustering.cxx` ```text PWGJE/Tasks/jetFormationTimeReclustering.cxx:26:1: warning: included header ReducedInfoTables.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetFormationTimeReclustering.cxx:27:1: warning: included header DerivedTables.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetFormationTimeReclustering.cxx:30:1: warning: included header JetReducedDataDQ.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetFormationTimeReclustering.cxx:77:1: warning: included header JetSubstructureUtilities.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetFormationTimeReclustering.cxx:78:1: warning: included header JetUtilities.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetFormationTimeReclustering.cxx:104:8: warning: constructor does not initialize these fields: pdg, leadingConstituentPt, ptJet, phiJet, etaJet [cppcoreguidelines-pro-type-member-init] PWGJE/Tasks/jetFormationTimeReclustering.cxx:167:76: warning: no header providing "o2::aod::bkgcharged::collisionId" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/jetFragmentation.cxx` ```text PWGJE/Tasks/jetFragmentation.cxx:26:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetFragmentation.cxx:1732:7: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ``` #### `PWGJE/Tasks/jetHadronRecoil.cxx` ```text PWGJE/Tasks/jetHadronRecoil.cxx:34:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetHadronRecoil.cxx:53:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGJE/Tasks/jetHadronRecoil.cxx:224:10: warning: variable 'isSigCol' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetHadronRecoil.cxx:287:9: warning: Variable 'shift' with floating point type 'double' should not be used as a loop counter [clang-analyzer-security.FloatLoopCounter] PWGJE/Tasks/jetHadronRecoil.cxx:339:11: warning: Variable 'shift' with floating point type 'double' should not be used as a loop counter [clang-analyzer-security.FloatLoopCounter] PWGJE/Tasks/jetHadronRecoil.cxx:343:11: warning: Variable 'shift' with floating point type 'double' should not be used as a loop counter [clang-analyzer-security.FloatLoopCounter] PWGJE/Tasks/jetHadronRecoil.cxx:359:10: warning: variable 'isSigCol' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetHadronRecoil.cxx:429:9: warning: Variable 'shift' with floating point type 'double' should not be used as a loop counter [clang-analyzer-security.FloatLoopCounter] PWGJE/Tasks/jetHadronRecoil.cxx:481:11: warning: Variable 'shift' with floating point type 'double' should not be used as a loop counter [clang-analyzer-security.FloatLoopCounter] PWGJE/Tasks/jetHadronRecoil.cxx:485:11: warning: Variable 'shift' with floating point type 'double' should not be used as a loop counter [clang-analyzer-security.FloatLoopCounter] PWGJE/Tasks/jetHadronRecoil.cxx:501:10: warning: variable 'isSigCol' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGJE/Tasks/jetOutlierQA.cxx` ```text PWGJE/Tasks/jetOutlierQA.cxx:20:1: warning: included header JetSubtraction.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetOutlierQA.cxx:22:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetOutlierQA.cxx:32:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetOutlierQA.cxx:34:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetOutlierQA.cxx:36:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGJE/Tasks/jetOutlierQA.cxx:38:1: warning: included header cstddef is not used directly [misc-include-cleaner] PWGJE/Tasks/jetOutlierQA.cxx:42:1: warning: included header type_traits is not used directly [misc-include-cleaner] PWGJE/Tasks/jetOutlierQA.cxx:91:12: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGJE/Tasks/jetOutlierQA.cxx:91:34: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGJE/Tasks/jetOutlierQA.cxx:298:37: warning: no header providing "o2::aod::AmbiguousTracks" is directly included [misc-include-cleaner] PWGJE/Tasks/jetOutlierQA.cxx:456:34: warning: no header providing "std::next" is directly included [misc-include-cleaner] PWGJE/Tasks/jetOutlierQA.cxx:478:30: warning: no header providing "std::next" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/jetPlanarFlow.cxx` ```text PWGJE/Tasks/jetPlanarFlow.cxx:87:8: warning: constructor does not initialize these fields: precisionMask [cppcoreguidelines-pro-type-member-init] PWGJE/Tasks/jetPlanarFlow.cxx:92:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGJE/Tasks/jetPlanarFlow.cxx:139:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGJE/Tasks/jetPlanarFlow.cxx:148:78: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGJE/Tasks/jetPlanarFlow.cxx:251:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGJE/Tasks/jetPlanarFlow.cxx:383:20: warning: no header providing "round" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/jetShape.cxx` ```text PWGJE/Tasks/jetShape.cxx:16:1: warning: included header FastJetUtilities.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:18:1: warning: included header JetUtilities.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:20:1: warning: included header mcCentrality.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:24:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:25:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:46:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:81:32: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:187:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:199:66: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:204:32: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:241:53: warning: no header providing "o2::aod::jcollision::posZ" is directly included [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:243:54: warning: no header providing "o2::aod::jmccollision::posZ" is directly included [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:245:53: warning: no header providing "o2::aod::pidTPCFullPi" is directly included [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:245:72: warning: no header providing "o2::aod::pidTOFFullPi" is directly included [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:245:91: warning: no header providing "o2::aod::pidTPCFullPr" is directly included [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:245:110: warning: no header providing "o2::aod::pidTOFFullPr" is directly included [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:245:163: warning: no header providing "o2::aod::pidTOFbeta" is directly included [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:247:73: warning: no header providing "o2::aod::BkgChargedRhos" is directly included [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:255:5: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:393:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:395:159: warning: no header providing "o2::aod::JTrackPIs" is directly included [misc-include-cleaner] PWGJE/Tasks/jetShape.cxx:705:39: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/jetSpectraCharged.cxx` ```text PWGJE/Tasks/jetSpectraCharged.cxx:203:20: warning: no header providing "TH2" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/jetSpectraEseTask.cxx` ```text PWGJE/Tasks/jetSpectraEseTask.cxx:161:23: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGJE/Tasks/jetSpectraEseTask.cxx:199:30: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGJE/Tasks/jetSpectraEseTask.cxx:266:30: warning: no header providing "fmt::format" is directly included [misc-include-cleaner] PWGJE/Tasks/jetSpectraEseTask.cxx:522:5: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] PWGJE/Tasks/jetSpectraEseTask.cxx:845:5: warning: uninitialized record type: 'localPlane' [cppcoreguidelines-pro-type-member-init] ``` #### `PWGJE/Tasks/jetSubstructure.cxx` ```text PWGJE/Tasks/jetSubstructure.cxx:59:8: warning: constructor does not initialize these fields: pdg, angularity, leadingConstituentPt, perpConeRho [cppcoreguidelines-pro-type-member-init] PWGJE/Tasks/jetSubstructure.cxx:273:42: warning: no header providing "std::decay_t" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/jetTaggerHFQA.cxx` ```text PWGJE/Tasks/jetTaggerHFQA.cxx:24:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetTaggerHFQA.cxx:39:1: warning: included header array is not used directly [misc-include-cleaner] PWGJE/Tasks/jetTaggerHFQA.cxx:608:10: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGJE/Tasks/jetTaggerHFQA.cxx:630:15: warning: variable 'varImpXY' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:630:25: warning: variable 'varSignImpXY' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:630:39: warning: variable 'varImpXYSig' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:630:52: warning: variable 'varSignImpXYSig' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:642:15: warning: variable 'varImpZ' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:642:24: warning: variable 'varSignImpZ' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:642:37: warning: variable 'varImpZSig' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:642:49: warning: variable 'varSignImpZSig' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:654:15: warning: variable 'varImpXYZ' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:654:26: warning: variable 'varSignImpXYZ' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:654:41: warning: variable 'varImpXYZSig' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:654:55: warning: variable 'varSignImpXYZSig' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:736:33: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGJE/Tasks/jetTaggerHFQA.cxx:736:74: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGJE/Tasks/jetTaggerHFQA.cxx:736:114: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGJE/Tasks/jetTaggerHFQA.cxx:736:158: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGJE/Tasks/jetTaggerHFQA.cxx:737:32: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGJE/Tasks/jetTaggerHFQA.cxx:737:72: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGJE/Tasks/jetTaggerHFQA.cxx:737:111: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGJE/Tasks/jetTaggerHFQA.cxx:737:154: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGJE/Tasks/jetTaggerHFQA.cxx:738:34: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGJE/Tasks/jetTaggerHFQA.cxx:738:76: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGJE/Tasks/jetTaggerHFQA.cxx:738:117: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGJE/Tasks/jetTaggerHFQA.cxx:738:162: warning: variable length arrays in C++ are a Clang extension [clang-diagnostic-vla-cxx-extension] PWGJE/Tasks/jetTaggerHFQA.cxx:762:15: warning: variable 'varImpXY' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:762:25: warning: variable 'varSignImpXY' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:762:39: warning: variable 'varImpXYSig' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:762:52: warning: variable 'varSignImpXYSig' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:784:15: warning: variable 'varImpZ' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:784:24: warning: variable 'varSignImpZ' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:784:37: warning: variable 'varImpZSig' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:784:49: warning: variable 'varSignImpZSig' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:804:15: warning: variable 'varImpXYZ' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:804:26: warning: variable 'varSignImpXYZ' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:804:41: warning: variable 'varImpXYZSig' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:804:55: warning: variable 'varSignImpXYZSig' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:1270:13: warning: variable 'varImpXY' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:1270:23: warning: variable 'varImpXYSig' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:1270:36: warning: variable 'varImpZ' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:1270:45: warning: variable 'varImpZSig' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:1270:57: warning: variable 'varImpXYZ' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/jetTaggerHFQA.cxx:1270:68: warning: variable 'varImpXYZSig' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGJE/Tasks/jetTriggerChargedQa.cxx` ```text PWGJE/Tasks/jetTriggerChargedQa.cxx:21:1: warning: included header EventSelectionParams.h is not used directly [misc-include-cleaner] PWGJE/Tasks/jetTriggerChargedQa.cxx:22:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] ``` #### `PWGJE/Tasks/jetValidationQA.cxx` ```text PWGJE/Tasks/jetValidationQA.cxx:319:8: warning: constructor does not initialize these fields: trackSelection [cppcoreguidelines-pro-type-member-init] ``` #### `PWGJE/Tasks/mcGeneratorStudies.cxx` ```text PWGJE/Tasks/mcGeneratorStudies.cxx:84:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ``` #### `PWGJE/Tasks/nucleiInJets.cxx` ```text PWGJE/Tasks/nucleiInJets.cxx:23:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGJE/Tasks/nucleiInJets.cxx:24:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGJE/Tasks/nucleiInJets.cxx:42:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGJE/Tasks/nucleiInJets.cxx:46:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGJE/Tasks/nucleiInJets.cxx:65:8: warning: constructor does not initialize these fields: ccdb, pdgDB [cppcoreguidelines-pro-type-member-init] PWGJE/Tasks/nucleiInJets.cxx:94:12: warning: no header providing "o2::constants::physics::Pdg" is directly included [misc-include-cleaner] PWGJE/Tasks/nucleiInJets.cxx:188:89: warning: no header providing "o2::aod::BkgChargedRhos" is directly included [misc-include-cleaner] PWGJE/Tasks/nucleiInJets.cxx:217:26: warning: no header providing "o2::framework::O2DatabasePDG" is directly included [misc-include-cleaner] PWGJE/Tasks/nucleiInJets.cxx:608:19: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGJE/Tasks/nucleiInJets.cxx:755:106: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGJE/Tasks/nucleiInJets.cxx:999:101: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGJE/Tasks/nucleiInJets.cxx:1001:105: warning: no header providing "o2::constants::physics::MassDeuteron" is directly included [misc-include-cleaner] PWGJE/Tasks/nucleiInJets.cxx:1003:101: warning: no header providing "o2::constants::physics::MassTriton" is directly included [misc-include-cleaner] PWGJE/Tasks/nucleiInJets.cxx:1005:101: warning: no header providing "o2::constants::physics::MassHelium3" is directly included [misc-include-cleaner] PWGJE/Tasks/nucleiInJets.cxx:2539:49: warning: no header providing "TMCProcess" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/photonChargedTriggerCorrelation.cxx` ```text PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:24:1: warning: included header PCMUtilities.h is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:28:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:29:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:30:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:31:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:40:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:41:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:47:1: warning: included header memory is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:53:37: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:53:62: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:66:24: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:66:61: warning: no header providing "o2::aod::jcollision::PosZ" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:70:8: warning: constructor does not initialize these fields: etaMax, ccdb, pdg, h1PtInvEffTrigger, h1PtInvEffHadron, h1PtInvEffPipm, h1PtInvEffPhotonPCM [cppcoreguidelines-pro-type-member-init] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:74:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:76:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:158:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:158:53: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:161:17: warning: member 'noLaterThanCcdb' of type 'const int64_t' (aka 'const long') is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:162:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:174:56: warning: no header providing "o2::aod::jtrack::collisionId" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:180:69: warning: no header providing "o2::aod::jmcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:185:8: warning: no header providing "std::function" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:191:70: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:196:3: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:239:12: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:266:18: warning: member 'zPvRoundingErrorAdjust' of type 'const double' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:291:13: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:292:84: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:294:20: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:294:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:371:54: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:381:25: warning: no header providing "std::format" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:384:20: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:424:23: warning: no header providing "std::format" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:426:25: warning: no header providing "std::format" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:459:53: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:536:42: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:594:12: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:662:39: warning: forwarding reference parameter 'funcPlain' is never forwarded inside the function body [cppcoreguidelines-missing-std-forward] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:674:51: warning: forwarding reference parameter 'funcCorrelation' is never forwarded inside the function body [cppcoreguidelines-missing-std-forward] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:686:41: warning: forwarding reference parameter 'funcMixing' is never forwarded inside the function body [cppcoreguidelines-missing-std-forward] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:706:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:751:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:1056:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:1077:21: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:1433:51: warning: no header providing "o2::aod::JTrackPIs" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/photonChargedTriggerProducer.cxx` ```text PWGJE/Tasks/photonChargedTriggerProducer.cxx:19:1: warning: included header PCMUtilities.h is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:23:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:24:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:25:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:26:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:29:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:31:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:38:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:39:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:41:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:42:1: warning: included header chrono is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:44:1: warning: included header deque is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:45:1: warning: included header memory is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:46:1: warning: included header random is not used directly [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:55:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGJE/Tasks/photonChargedTriggerProducer.cxx:57:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:67:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:92:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:97:56: warning: no header providing "o2::aod::jtrack::collisionId" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:98:69: warning: no header providing "o2::aod::jmcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:175:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:177:51: warning: no header providing "jetderiveddatautilities::initialiseEventSelectionBits" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:178:47: warning: no header providing "jetderiveddatautilities::initialiseTrackSelection" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:179:48: warning: no header providing "jetderiveddatautilities::initialiseTriggerMaskBits" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:213:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:216:61: warning: no header providing "o2::aod::JTrackPIs" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:269:64: warning: no header providing "o2::aod::JCollisionPIs" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:293:19: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGJE/Tasks/photonChargedTriggerProducer.cxx:304:44: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/photonIsolationQA.cxx` ```text PWGJE/Tasks/photonIsolationQA.cxx:367:12: warning: variable 'updated' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGJE/Tasks/recoilJets.cxx` ```text PWGJE/Tasks/recoilJets.cxx:33:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGJE/Tasks/recoilJets.cxx:73:49: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGJE/Tasks/recoilJets.cxx:73:66: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGJE/Tasks/recoilJets.cxx:74:32: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGJE/Tasks/recoilJets.cxx:74:56: warning: no header providing "o2::aod::BcSels" is directly included [misc-include-cleaner] PWGJE/Tasks/recoilJets.cxx:74:69: warning: no header providing "o2::aod::Run3MatchedToBCSparse" is directly included [misc-include-cleaner] PWGJE/Tasks/recoilJets.cxx:76:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGJE/Tasks/recoilJets.cxx:143:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGJE/Tasks/recoilJets.cxx:168:23: warning: member 'axis' of type 'const AxisObject &' is a reference [cppcoreguidelines-avoid-const-or-ref-data-members] PWGJE/Tasks/recoilJets.cxx:168:23: warning: member 'axis' of type 'const o2::framework::AxisSpec &' is a reference [cppcoreguidelines-avoid-const-or-ref-data-members] PWGJE/Tasks/recoilJets.cxx:168:23: warning: member 'axis' of type 'const o2::framework::Configurable, o2::framework::kAxisSpec> &' is a reference [cppcoreguidelines-avoid-const-or-ref-data-members] PWGJE/Tasks/recoilJets.cxx:266:43: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGJE/Tasks/recoilJets.cxx:522:12: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGJE/Tasks/recoilJets.cxx:642:38: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGJE/Tasks/recoilJets.cxx:1181:66: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGJE/Tasks/recoilJets.cxx:1194:68: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGJE/Tasks/recoilJets.cxx:1207:76: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGJE/Tasks/recoilJets.cxx:1926:36: warning: no header providing "o2::aod::Zdcs" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/statPromptPhoton.cxx` ```text PWGJE/Tasks/statPromptPhoton.cxx:18:1: warning: included header FastJetUtilities.h is not used directly [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:23:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:24:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:25:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:26:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:28:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:31:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:32:1: warning: included header InteractionRecord.h is not used directly [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:33:1: warning: included header AnalysisCluster.h is not used directly [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:34:1: warning: included header Cell.h is not used directly [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:35:1: warning: included header Constants.h is not used directly [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:36:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:37:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:38:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:39:1: warning: included header Geometry.h is not used directly [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:40:1: warning: included header BadChannelMap.h is not used directly [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:46:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:47:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:64:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:65:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:108:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:111:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:119:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:122:105: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:128:68: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:239:48: warning: no header providing "o2::aod::jcollision::posZ" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:240:49: warning: no header providing "o2::aod::jmccollision::posZ" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:241:62: warning: no header providing "o2::aod::jcluster::definition" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:241:121: warning: no header providing "o2::aod::jcluster::time" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:241:207: warning: no header providing "o2::aod::jcluster::energy" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:241:260: warning: no header providing "o2::aod::jcluster::nCells" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:241:307: warning: no header providing "o2::aod::jcluster::nlm" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:241:348: warning: no header providing "o2::aod::jcluster::isExotic" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:243:37: warning: no header providing "o2::aod::JMcCollisions" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:246:39: warning: no header providing "o2::aod::JBCs" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:246:50: warning: no header providing "o2::aod::JBCPIs" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:248:43: warning: no header providing "o2::aod::JTracks" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:248:57: warning: no header providing "o2::aod::JTrackPIs" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:248:73: warning: no header providing "o2::aod::JMcTrackLbs" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:249:27: warning: no header providing "o2::aod::JEMCTracks" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:253:46: warning: no header providing "o2::aod::JMcClusterLbs" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:253:70: warning: no header providing "o2::aod::JClusters" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:253:90: warning: no header providing "o2::aod::JClusterTracks" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:255:46: warning: no header providing "o2::aod::JCollisions" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:255:64: warning: no header providing "o2::aod::JCollisionBCs" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:255:84: warning: no header providing "o2::aod::JCollisionPIs" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:255:117: warning: no header providing "o2::aod::JEMCCollisionLbs" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:255:140: warning: no header providing "o2::aod::JMcCollisionLbs" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:276:12: warning: variable 'eta_trigger' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/statPromptPhoton.cxx:276:25: warning: variable 'phi_trigger' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/statPromptPhoton.cxx:342:26: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:432:164: warning: no header providing "o2::aod::JMcParticles" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:441:9: warning: no header providing "fabs" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:467:24: warning: using floating point absolute value function 'fabs' when argument is of integer type [clang-diagnostic-absolute-value] PWGJE/Tasks/statPromptPhoton.cxx:536:18: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:607:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:609:67: warning: no header providing "o2::aod::jemctrack::trackId" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:611:172: warning: no header providing "o2::aod::JTrackExtras" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:701:19: warning: no header providing "fmod" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:725:16: warning: variable 'etaT' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/statPromptPhoton.cxx:725:22: warning: variable 'phiT' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/statPromptPhoton.cxx:756:44: warning: no header providing "pow" is directly included [misc-include-cleaner] PWGJE/Tasks/statPromptPhoton.cxx:874:26: warning: using floating point absolute value function 'fabs' when argument is of integer type [clang-diagnostic-absolute-value] PWGJE/Tasks/statPromptPhoton.cxx:1201:16: warning: variable 'etaT' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/statPromptPhoton.cxx:1201:22: warning: variable 'phiT' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGJE/Tasks/substructureDebug.cxx` ```text PWGJE/Tasks/substructureDebug.cxx:17:1: warning: included header FastJetUtilities.h is not used directly [misc-include-cleaner] PWGJE/Tasks/substructureDebug.cxx:22:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGJE/Tasks/substructureDebug.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGJE/Tasks/substructureDebug.cxx:24:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGJE/Tasks/substructureDebug.cxx:25:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGJE/Tasks/substructureDebug.cxx:26:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGJE/Tasks/substructureDebug.cxx:41:81: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGJE/Tasks/substructureDebug.cxx:81:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGJE/Tasks/substructureDebug.cxx:81:21: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGJE/Tasks/substructureDebug.cxx:84:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGJE/Tasks/substructureDebug.cxx:87:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGJE/Tasks/substructureDebug.cxx:104:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/taskEmcExtensiveMcQa.cxx` ```text PWGJE/Tasks/taskEmcExtensiveMcQa.cxx:73:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] ``` #### `PWGJE/Tasks/trackEfficiency.cxx` ```text PWGJE/Tasks/trackEfficiency.cxx:45:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGJE/Tasks/trackEfficiency.cxx:120:72: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGJE/Tasks/trackEfficiency.cxx:120:85: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGJE/Tasks/trackEfficiency.cxx:120:103: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGJE/Tasks/trackEfficiency.cxx:386:47: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGJE/Tasks/trackEfficiency.cxx:386:66: warning: no header providing "o2::aod::HepMCXSections" is directly included [misc-include-cleaner] ``` #### `PWGJE/Tasks/v0QA.cxx` ```text PWGJE/Tasks/v0QA.cxx:596:13: warning: no header providing "gRandom" is directly included [misc-include-cleaner] PWGJE/Tasks/v0QA.cxx:878:12: warning: variable 'pthard' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/v0QA.cxx:878:20: warning: variable 'etahard' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/v0QA.cxx:878:29: warning: variable 'ptsoft' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/v0QA.cxx:895:12: warning: variable 'sharedDaughterPt' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/v0QA.cxx:965:12: warning: variable 'pthard' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/v0QA.cxx:965:20: warning: variable 'ptsoft' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/v0QA.cxx:983:12: warning: variable 'sharedDaughterPt' is not initialized [cppcoreguidelines-init-variables] PWGJE/Tasks/v0QA.cxx:1603:11: warning: Value stored to 'pdg' during its initialization is never read [clang-analyzer-deadcode.DeadStores] PWGJE/Tasks/v0QA.cxx:1640:13: warning: Value stored to 'pdg' during its initialization is never read [clang-analyzer-deadcode.DeadStores] PWGJE/Tasks/v0QA.cxx:1685:17: warning: Value stored to 'pdg' during its initialization is never read [clang-analyzer-deadcode.DeadStores] ``` ### PWGLF #### `PWGLF/DataModel/EPCalibrationTables.h` ```text PWGLF/DataModel/EPCalibrationTables.h:19:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/DataModel/EPCalibrationTables.h:20:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] ``` #### `PWGLF/DataModel/FilterF1ProtonTables.h` ```text PWGLF/DataModel/FilterF1ProtonTables.h:19:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/DataModel/FilterF1ProtonTables.h:20:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFAntinCexTables.h` ```text PWGLF/DataModel/LFAntinCexTables.h:21:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFAntinCexTables.h:30:42: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFAntinCexTables.h:73:46: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFAntinCexTables.h:85:38: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFAntinCexTables.h:100:50: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFAntinCexTables.h:102:42: warning: no header providing "int8_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFCKSSpinalignmentTables.h` ```text PWGLF/DataModel/LFCKSSpinalignmentTables.h:20:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFCKSSpinalignmentTables.h:21:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFCKSSpinalignmentTables.h:22:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFCKSSpinalignmentTables.h:23:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFClusterStudiesTable.h` ```text PWGLF/DataModel/LFClusterStudiesTable.h:14:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFClusterStudiesTable.h:47:36: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFClusterStudiesTable.h:56:40: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFDoubleCascTables.h` ```text PWGLF/DataModel/LFDoubleCascTables.h:13:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFEbyeTables.h` ```text PWGLF/DataModel/LFEbyeTables.h:13:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFEbyeTables.h:23:44: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFEbyeTables.h:25:40: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFEbyeTables.h:64:34: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFF1Tables.h` ```text PWGLF/DataModel/LFF1Tables.h:19:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFF1Tables.h:20:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFHStrangeCorrelationTables.h` ```text PWGLF/DataModel/LFHStrangeCorrelationTables.h:26:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFHStrangeCorrelationTables.h:28:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFHStrangeCorrelationTables.h:30:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFHyperNucleiKinkTables.h` ```text PWGLF/DataModel/LFHyperNucleiKinkTables.h:16:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFHyperNucleiKinkTables.h:27:46: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFHyperNucleiKinkTables.h:48:62: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFHyperNucleiKinkTables.h:52:52: warning: no header providing "int16_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFHyperhelium4Tables.h` ```text PWGLF/DataModel/LFHyperhelium4Tables.h:91:175: warning: no header providing "std::array" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFHypernucleiKfTables.h` ```text PWGLF/DataModel/LFHypernucleiKfTables.h:45:38: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFHypernucleiKfTables.h:108:57: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFHypernucleiKfTables.h:109:3: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFHypernucleiTables.h` ```text PWGLF/DataModel/LFHypernucleiTables.h:17:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFHypernucleiTables.h:37:46: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFHypernucleiTables.h:39:42: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFHypernucleiTables.h:58:44: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFHypernucleiTables.h:62:46: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFHypernucleiTables.h:72:58: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFKinkDecayTables.h` ```text PWGLF/DataModel/LFKinkDecayTables.h:20:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFKinkDecayTables.h:78:82: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/DataModel/LFKinkDecayTables.h:88:54: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/DataModel/LFKinkDecayTables.h:88:162: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/DataModel/LFKinkDecayTables.h:88:203: warning: no header providing "o2::constants::physics::MassNeutron" is directly included [misc-include-cleaner] PWGLF/DataModel/LFKinkDecayTables.h:95:162: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/DataModel/LFKinkDecayTables.h:95:198: warning: no header providing "o2::constants::physics::MassPionNeutral" is directly included [misc-include-cleaner] PWGLF/DataModel/LFKinkDecayTables.h:102:203: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFLambda1405Table.h` ```text PWGLF/DataModel/LFLambda1405Table.h:18:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFLambda1405Table.h:20:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFLithium4Tables.h` ```text PWGLF/DataModel/LFLithium4Tables.h:18:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFLithium4Tables.h:44:44: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFLithium4Tables.h:51:42: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFLithium4Tables.h:72:48: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFLnnTables.h` ```text PWGLF/DataModel/LFLnnTables.h:18:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFLnnTables.h:54:44: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFLnnTables.h:56:46: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFLnnTables.h:63:58: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFNonPromptCascadeTables.h` ```text PWGLF/DataModel/LFNonPromptCascadeTables.h:18:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFNonPromptCascadeTables.h:43:52: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFNonPromptCascadeTables.h:78:48: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFNonPromptCascadeTables.h:113:64: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFNonPromptCascadeTables.h:123:38: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFNucleiTables.h` ```text PWGLF/DataModel/LFNucleiTables.h:20:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFNucleiTables.h:53:81: warning: no header providing "cosh" is directly included [misc-include-cleaner] PWGLF/DataModel/LFNucleiTables.h:55:32: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFNucleiTables.h:61:51: warning: no header providing "sinh" is directly included [misc-include-cleaner] PWGLF/DataModel/LFNucleiTables.h:62:50: warning: no header providing "sqrt" is directly included [misc-include-cleaner] PWGLF/DataModel/LFNucleiTables.h:63:44: warning: no header providing "log" is directly included [misc-include-cleaner] PWGLF/DataModel/LFNucleiTables.h:66:54: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFPIDTOFGenericTables.h` ```text PWGLF/DataModel/LFPIDTOFGenericTables.h:16:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFPIDTOFGenericTables.h:21:1: warning: included header PIDTOF.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFPIDTOFGenericTables.h:23:1: warning: included header InteractionRecord.h is not used directly [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFParticleIdentification.h` ```text PWGLF/DataModel/LFParticleIdentification.h:26:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] PWGLF/DataModel/LFParticleIdentification.h:27:28: warning: no header providing "o2::soa::Marker" is directly included [misc-include-cleaner] PWGLF/DataModel/LFParticleIdentification.h:33:28: warning: no header providing "o2::soa::Marker" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFPhiStrangeCorrelationTables.h` ```text PWGLF/DataModel/LFPhiStrangeCorrelationTables.h:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFResonanceTables.h` ```text PWGLF/DataModel/LFResonanceTables.h:35:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGLF/DataModel/LFResonanceTables.h:132:26: warning: no header providing "o2::aod::evsel::NumTracksInTimeRange" is directly included [misc-include-cleaner] PWGLF/DataModel/LFResonanceTables.h:141:11: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFResonanceTables.h:185:44: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFResonanceTables.h:188:50: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFResonanceTables.h:300:109: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/DataModel/LFResonanceTables.h:861:65: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGLF/DataModel/LFResonanceTables.h:861:78: warning: no header providing "o2::aod::CentFT0Ms" is directly included [misc-include-cleaner] PWGLF/DataModel/LFResonanceTables.h:861:94: warning: no header providing "o2::aod::CentFT0Cs" is directly included [misc-include-cleaner] PWGLF/DataModel/LFResonanceTables.h:861:110: warning: no header providing "o2::aod::CentFT0As" is directly included [misc-include-cleaner] PWGLF/DataModel/LFResonanceTables.h:862:82: warning: no header providing "o2::aod::CentRun2V0Ms" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFSigmaProtonTables.h` ```text PWGLF/DataModel/LFSigmaProtonTables.h:20:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFSigmaProtonTables.h:22:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFSigmaTables.h` ```text PWGLF/DataModel/LFSigmaTables.h:15:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFSigmaTables.h:16:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFSigmaTables.h:17:1: warning: included header Qvectors.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFSigmaTables.h:20:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFSigmaTables.h:23:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFSigmaTables.h:27:1: warning: included header vector is not used directly [misc-include-cleaner] PWGLF/DataModel/LFSigmaTables.h:32:1: warning: using declarations in the global namespace in headers are prohibited [google-global-names-in-headers] PWGLF/DataModel/LFSigmaTables.h:32:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/DataModel/LFSigmaTables.h:86:35: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/DataModel/LFSigmaTables.h:361:70: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFSigmaTables.h:593:72: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFSlimHeLambda.h` ```text PWGLF/DataModel/LFSlimHeLambda.h:20:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFSlimHeLambda.h:23:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFSlimHeLambda.h:46:54: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFSlimHeLambda.h:54:32: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFSlimHeLambda.h:64:15: warning: no header providing "ROOT::Math::LorentzVector" is directly included [misc-include-cleaner] PWGLF/DataModel/LFSlimHeLambda.h:64:41: warning: no header providing "ROOT::Math::PtEtaPhiM4D" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFSlimNucleiTables.h` ```text PWGLF/DataModel/LFSlimNucleiTables.h:17:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFSlimNucleiTables.h:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFSlimNucleiTables.h:42:34: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFSlimNucleiTables.h:43:52: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFSlimNucleiTables.h:48:54: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFSlimNucleiTables.h:57:42: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFSlimStrangeTables.h` ```text PWGLF/DataModel/LFSlimStrangeTables.h:13:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFSlimStrangeTables.h:61:32: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFSpincorrelationTables.h` ```text PWGLF/DataModel/LFSpincorrelationTables.h:18:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFSpincorrelationTables.h:19:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFSpincorrelationTables.h:20:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFSpincorrelationTables.h:21:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFStrangenessFinderTables.h` ```text PWGLF/DataModel/LFStrangenessFinderTables.h:21:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFStrangenessFinderTables.h:23:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFStrangenessMLTables.h` ```text PWGLF/DataModel/LFStrangenessMLTables.h:14:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFStrangenessMLTables.h:15:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFStrangenessMLTables.h:16:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFStrangenessMLTables.h:28:48: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFStrangenessMLTables.h:30:44: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFStrangenessPIDTables.h` ```text PWGLF/DataModel/LFStrangenessPIDTables.h:26:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFStrangenessPIDTables.h:28:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFStrangenessPIDTables.h:43:47: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFStrangenessPIDTables.h:61:32: warning: casting (double + 0.5) to integer leads to incorrect rounding; consider using lround (#include ) instead [bugprone-incorrect-roundings] PWGLF/DataModel/LFStrangenessPIDTables.h:122:62: warning: no header providing "o2::framework::pid::tof::MassToExpTime" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFhe3HadronTables.h` ```text PWGLF/DataModel/LFhe3HadronTables.h:17:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFhe3HadronTables.h:45:44: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFhe3HadronTables.h:57:42: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFhe3HadronTables.h:80:46: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/DataModel/LFhe3HadronTables.h:82:48: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/LFzdcSPtables.h` ```text PWGLF/DataModel/LFzdcSPtables.h:16:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/DataModel/LFzdcSPtables.h:23:48: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/QC/strangenessTablesQC.h` ```text PWGLF/DataModel/QC/strangenessTablesQC.h:20:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] ``` #### `PWGLF/DataModel/Reduced3BodyTables.h` ```text PWGLF/DataModel/Reduced3BodyTables.h:22:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/DataModel/Reduced3BodyTables.h:23:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGLF/DataModel/Reduced3BodyTables.h:26:1: warning: included header Vtx3BodyTables.h is not used directly [misc-include-cleaner] ``` #### `PWGLF/DataModel/ReducedDoublePhiTables.h` ```text PWGLF/DataModel/ReducedDoublePhiTables.h:18:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/DataModel/ReducedDoublePhiTables.h:19:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/DataModel/ReducedDoublePhiTables.h:20:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/DataModel/ReducedDoublePhiTables.h:21:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/DataModel/ReducedDoublePhiTables.h:59:44: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/ReducedF1ProtonTables.h` ```text PWGLF/DataModel/ReducedF1ProtonTables.h:19:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/DataModel/ReducedF1ProtonTables.h:20:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/DataModel/ReducedF1ProtonTables.h:21:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/DataModel/ReducedF1ProtonTables.h:22:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/DataModel/ReducedF1ProtonTables.h:68:46: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/ReducedHeptaQuarkTables.h` ```text PWGLF/DataModel/ReducedHeptaQuarkTables.h:18:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/DataModel/ReducedHeptaQuarkTables.h:19:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/DataModel/ReducedHeptaQuarkTables.h:20:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/DataModel/ReducedHeptaQuarkTables.h:21:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/DataModel/ReducedHeptaQuarkTables.h:67:42: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/ReducedLambdaLambdaTables.h` ```text PWGLF/DataModel/ReducedLambdaLambdaTables.h:18:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/DataModel/ReducedLambdaLambdaTables.h:19:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/DataModel/ReducedLambdaLambdaTables.h:20:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/DataModel/ReducedLambdaLambdaTables.h:21:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/DataModel/ReducedLambdaLambdaTables.h:59:44: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/SPCalibrationTables.h` ```text PWGLF/DataModel/SPCalibrationTables.h:20:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/DataModel/SPCalibrationTables.h:21:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] ``` #### `PWGLF/DataModel/Vtx3BodyTables.h` ```text PWGLF/DataModel/Vtx3BodyTables.h:96:50: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/DataModel/Vtx3BodyTables.h:169:99: warning: no header providing "std::array" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/ZDCCalTables.h` ```text PWGLF/DataModel/ZDCCalTables.h:20:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/DataModel/ZDCCalTables.h:21:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] ``` #### `PWGLF/DataModel/cascqaanalysis.h` ```text PWGLF/DataModel/cascqaanalysis.h:19:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/DataModel/cascqaanalysis.h:21:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/DataModel/cascqaanalysis.h:22:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/DataModel/cascqaanalysis.h:23:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/DataModel/cascqaanalysis.h:24:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/DataModel/cascqaanalysis.h:26:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGLF/DataModel/cascqaanalysis.h:27:1: warning: included header runDataProcessing.h is not used directly [misc-include-cleaner] PWGLF/DataModel/cascqaanalysis.h:29:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/DataModel/cascqaanalysis.h:30:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/DataModel/cascqaanalysis.h:31:1: warning: included header TRandom.h is not used directly [misc-include-cleaner] PWGLF/DataModel/cascqaanalysis.h:39:16: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/DataModel/cascqaanalysis.h:45:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] PWGLF/DataModel/cascqaanalysis.h:108:1: warning: no header providing "DECLARE_SOA_DYNAMIC_COLUMN" is directly included [misc-include-cleaner] PWGLF/DataModel/cascqaanalysis.h:126:32: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGLF/DataModel/cascqaanalysis.h:153:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] PWGLF/DataModel/cascqaanalysis.h:153:61: warning: no header providing "o2::soa::Index" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/kfStrangenessStudy.h` ```text PWGLF/DataModel/kfStrangenessStudy.h:17:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGLF/DataModel/kfStrangenessStudy.h:19:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] ``` #### `PWGLF/DataModel/lambdaJetpolarization.h` ```text PWGLF/DataModel/lambdaJetpolarization.h:19:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/DataModel/lambdaJetpolarization.h:21:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/DataModel/lambdaJetpolarization.h:22:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/DataModel/lambdaJetpolarization.h:23:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/DataModel/lambdaJetpolarization.h:24:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/DataModel/lambdaJetpolarization.h:26:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGLF/DataModel/lambdaJetpolarization.h:27:1: warning: included header runDataProcessing.h is not used directly [misc-include-cleaner] PWGLF/DataModel/lambdaJetpolarization.h:29:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/DataModel/lambdaJetpolarization.h:30:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/DataModel/lambdaJetpolarization.h:31:1: warning: included header TRandom.h is not used directly [misc-include-cleaner] PWGLF/DataModel/lambdaJetpolarization.h:35:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] PWGLF/DataModel/lambdaJetpolarization.h:36:28: warning: no header providing "o2::soa::Index" is directly included [misc-include-cleaner] PWGLF/DataModel/lambdaJetpolarization.h:36:48: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGLF/DataModel/lambdaJetpolarization.h:40:48: warning: no header providing "o2::aod::collision::PosX" is directly included [misc-include-cleaner] PWGLF/DataModel/lambdaJetpolarization.h:45:1: warning: no header providing "DECLARE_SOA_INDEX_COLUMN" is directly included [misc-include-cleaner] PWGLF/DataModel/lambdaJetpolarization.h:46:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] PWGLF/DataModel/lambdaJetpolarization.h:46:50: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGLF/DataModel/lambdaJetpolarization.h:47:32: warning: no header providing "Float_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/DataModel/mcCentrality.h` ```text PWGLF/DataModel/mcCentrality.h:28:1: warning: included header Logger.h is not used directly [misc-include-cleaner] ``` #### `PWGLF/DataModel/spectraTOF.h` ```text PWGLF/DataModel/spectraTOF.h:22:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:24:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:25:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:26:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:27:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:28:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:29:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:31:1: warning: included header PIDResponseTPC.h is not used directly [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:32:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:35:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:36:1: warning: included header HistogramRegistry.h is not used directly [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:37:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:38:1: warning: included header runDataProcessing.h is not used directly [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:39:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:45:29: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:58:17: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:59:23: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:301:11: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:351:43: warning: no header providing "o2::aod::evsel::EventSelectionFlags" is directly included [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:365:46: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:366:52: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:394:70: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:403:103: warning: no header providing "cosh" is directly included [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:404:102: warning: no header providing "o2::aod::track::TrackTypeEnum" is directly included [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:407:61: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:413:51: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:414:50: warning: no header providing "sqrt" is directly included [misc-include-cleaner] PWGLF/DataModel/spectraTOF.h:415:44: warning: no header providing "log" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Common/epvector.cxx` ```text PWGLF/TableProducer/Common/epvector.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:24:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:33:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:36:1: warning: included header Geometry.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:37:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:41:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:43:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:45:1: warning: included header TComplex.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:47:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:58:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:58:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/TableProducer/Common/epvector.cxx:60:8: warning: constructor does not initialize these fields: ccdb, offsetFT0, offsetFV0, gainprofile, hrecentere, shiftprofile, shiftprofile2, shiftprofile3, shiftprofile4, shiftprofile5 [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Common/epvector.cxx:61:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:63:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:64:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:65:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:69:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:78:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:109:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:117:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:121:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:137:46: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:139:36: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:156:46: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:176:42: warning: no header providing "o2::framework::kTProfile3D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:213:29: warning: no header providing "kTVXinTRD" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:250:16: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:268:3: warning: no header providing "TProfile" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:269:3: warning: no header providing "TH2D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:270:3: warning: no header providing "TProfile3D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:304:64: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:304:224: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:304:299: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:304:373: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:304:452: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/epvector.cxx:304:529: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Common/kinkBuilder.cxx` ```text PWGLF/TableProducer/Common/kinkBuilder.cxx:17:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:20:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:21:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:22:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:27:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:28:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:30:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:46:34: warning: no header providing "o2::math_utils::Bracket" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:56:17: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:63:8: warning: constructor does not initialize these fields: mothTrackID, daugTrackID, collisionID, mothSign [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Common/kinkBuilder.cxx:65:42: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:66:43: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:67:43: warning: no header providing "std::asinh" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:91:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, mBz, mBBparamsDaug [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Common/kinkBuilder.cxx:97:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:100:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:102:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:118:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:121:41: warning: no header providing "o2::constants::math::Rad2Deg" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:125:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:139:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:146:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:146:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:154:44: warning: no header providing "o2::constants::physics::MassSigmaMinus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:155:50: warning: no header providing "o2::constants::physics::MassPiMinus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:156:47: warning: no header providing "o2::constants::physics::MassNeutron" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:158:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:167:42: warning: no header providing "o2::constants::physics::MassHyperTriton" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:168:48: warning: no header providing "o2::constants::physics::MassTriton" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:169:45: warning: no header providing "o2::constants::physics::MassPi0" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:172:42: warning: no header providing "o2::constants::physics::MassHyperHelium4" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:173:48: warning: no header providing "o2::constants::physics::MassAlpha" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:199:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:214:92: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:221:63: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:300:7: warning: uninitialized record type: 'dcaInfoMoth' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Common/kinkBuilder.cxx:319:7: warning: uninitialized record type: 'dcaInfoDaug' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Common/kinkBuilder.cxx:394:33: warning: no header providing "std::acos" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/kinkBuilder.cxx:401:32: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Common/lfTPCPID.cxx` ```text PWGLF/TableProducer/Common/lfTPCPID.cxx:21:1: warning: included header TSystem.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:28:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:31:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:36:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:37:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:48:19: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:48:31: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:80:21: warning: member 'name' of type 'const std::string' (aka 'const basic_string') is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGLF/TableProducer/Common/lfTPCPID.cxx:193:26: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:218:5: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:219:5: warning: no header providing "TObject" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:276:19: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:276:32: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:278:28: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:432:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Common/lfTPCPID.cxx:437:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:476:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:498:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:500:24: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:503:70: warning: no header providing "o2::track::pid_constants::sMasses2Z" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:504:63: warning: no header providing "o2::track::pid_constants::sCharges" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:515:153: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:565:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:573:43: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:573:70: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:573:97: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:587:57: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:663:48: warning: no header providing "o2::aod::pidtpc_tiny::binning" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/lfTPCPID.cxx:702:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Common/mcCentrality.cxx` ```text PWGLF/TableProducer/Common/mcCentrality.cxx:22:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/mcCentrality.cxx:26:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/mcCentrality.cxx:27:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/mcCentrality.cxx:35:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/mcCentrality.cxx:36:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/mcCentrality.cxx:38:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/mcCentrality.cxx:48:8: warning: constructor does not initialize these fields: ccdb, pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Common/mcCentrality.cxx:51:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/mcCentrality.cxx:59:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/mcCentrality.cxx:60:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/mcCentrality.cxx:61:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/mcCentrality.cxx:65:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/mcCentrality.cxx:65:54: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/mcCentrality.cxx:71:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/mcCentrality.cxx:73:3: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/mcCentrality.cxx:81:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/mcCentrality.cxx:87:43: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/mcCentrality.cxx:87:70: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/mcCentrality.cxx:87:97: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/mcCentrality.cxx:92:55: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Common/spvector.cxx` ```text PWGLF/TableProducer/Common/spvector.cxx:17:1: warning: included header ctpRateFetcher.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:18:1: warning: included header EventPlaneHelper.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:19:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:20:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:26:1: warning: included header Qvectors.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:31:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:32:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:33:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:34:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:35:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:36:1: warning: included header AlignParam.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:37:1: warning: included header Geometry.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:38:1: warning: included header Geometry.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:39:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:43:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:45:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:47:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:48:1: warning: included header TComplex.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:50:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:69:8: warning: constructor does not initialize these fields: ccdb, gainprofile, gainprofilevxy, hrecentereSpA, hrecenterecentSpA, hrecenterevxSpA, hrecenterevySpA, hrecenterevzSpA, shiftprofileA, shiftprofileC [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Common/spvector.cxx:71:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:74:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:75:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:76:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:80:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:82:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:204:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:206:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:211:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:226:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:230:42: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:236:42: warning: no header providing "o2::framework::kTHnF" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:241:48: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:264:36: warning: no header providing "o2::framework::kTProfile2D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:266:42: warning: no header providing "o2::framework::kTProfile3D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:294:3: warning: no header providing "TH2D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:295:3: warning: no header providing "TProfile" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:301:14: warning: no header providing "THnF" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:302:14: warning: no header providing "TH2F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:306:3: warning: no header providing "TProfile3D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:311:3: warning: no header providing "Bool_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:357:12: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:487:66: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:495:108: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:495:198: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:495:257: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:511:17: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/spvector.cxx:588:7: warning: no header providing "Int_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Common/zdcSP.cxx` ```text PWGLF/TableProducer/Common/zdcSP.cxx:18:1: warning: included header EventPlaneHelper.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:19:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:20:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:23:1: warning: included header Qvectors.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:24:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:27:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:28:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:29:1: warning: included header BetheBlochAleph.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:30:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:31:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:37:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:39:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:58:36: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:66:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Common/zdcSP.cxx:68:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:69:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:71:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:73:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:77:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:96:13: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:101:36: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:101:145: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:111:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcSP.cxx:206:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Common/zdcvector.cxx` ```text PWGLF/TableProducer/Common/zdcvector.cxx:17:1: warning: included header ctpRateFetcher.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:18:1: warning: included header EventPlaneHelper.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:19:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:20:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:26:1: warning: included header Qvectors.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:29:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:32:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:33:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:34:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:35:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:36:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:37:1: warning: included header AlignParam.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:38:1: warning: included header Geometry.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:39:1: warning: included header Geometry.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:40:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:44:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:46:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:48:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:49:1: warning: included header TComplex.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:51:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:52:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:69:8: warning: constructor does not initialize these fields: ccdb, gainprofile, gainprofilevxy [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Common/zdcvector.cxx:71:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:74:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:75:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:79:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:81:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:111:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:113:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:118:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:123:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:128:36: warning: no header providing "o2::framework::kTProfile2D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:130:36: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:141:3: warning: no header providing "TH2D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:142:3: warning: no header providing "TProfile" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:222:66: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:230:196: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:230:255: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:247:22: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Common/zdcvector.cxx:289:9: warning: Value stored to 'qxZDCA' is never read [clang-analyzer-deadcode.DeadStores] PWGLF/TableProducer/Common/zdcvector.cxx:290:9: warning: Value stored to 'qyZDCA' is never read [clang-analyzer-deadcode.DeadStores] PWGLF/TableProducer/Common/zdcvector.cxx:293:9: warning: Value stored to 'qxZDCC' is never read [clang-analyzer-deadcode.DeadStores] PWGLF/TableProducer/Common/zdcvector.cxx:294:9: warning: Value stored to 'qyZDCC' is never read [clang-analyzer-deadcode.DeadStores] PWGLF/TableProducer/Common/zdcvector.cxx:298:9: warning: Value stored to 'qxZDCA' is never read [clang-analyzer-deadcode.DeadStores] PWGLF/TableProducer/Common/zdcvector.cxx:299:9: warning: Value stored to 'qxZDCC' is never read [clang-analyzer-deadcode.DeadStores] PWGLF/TableProducer/Common/zdcvector.cxx:300:9: warning: Value stored to 'qyZDCA' is never read [clang-analyzer-deadcode.DeadStores] PWGLF/TableProducer/Common/zdcvector.cxx:301:9: warning: Value stored to 'qyZDCC' is never read [clang-analyzer-deadcode.DeadStores] ``` #### `PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx` ```text PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:17:1: warning: included header PairUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:23:1: warning: included header TPCPIDResponse.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:25:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:26:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:28:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:33:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:36:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:38:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:39:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:45:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:47:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:52:1: warning: included header numeric is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:53:1: warning: included header random is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:55:1: warning: included header unordered_map is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:142:23: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:160:8: warning: constructor does not initialize these fields: m_ccdb, m_runNumber, m_d_bz, m_BBparamsDe, m_BBparamsHe [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:162:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:169:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:236:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:237:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:244:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:247:75: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:276:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:279:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:289:22: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:372:58: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:373:7: warning: no header providing "SETBIT" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:375:58: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:388:9: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:506:56: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:624:45: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:632:38: warning: no header providing "o2::common::BetheBlochAleph" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:632:124: warning: no header providing "o2::constants::physics::MassHelium3" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:705:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:719:28: warning: no header providing "fmt::format" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:731:23: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:737:62: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:799:33: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:855:51: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:861:54: warning: no header providing "o2::constants::physics::MassOmegaMinus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:1027:38: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:1030:105: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:1033:49: warning: no header providing "o2::constants::physics::MassPi0" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:1118:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:1120:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Nuspex/LFTreeCreatorNuclei.cxx` ```text PWGLF/TableProducer/Nuspex/LFTreeCreatorNuclei.cxx:27:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorNuclei.cxx:30:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorNuclei.cxx:34:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorNuclei.cxx:39:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorNuclei.cxx:41:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorNuclei.cxx:42:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorNuclei.cxx:43:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorNuclei.cxx:53:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorNuclei.cxx:57:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorNuclei.cxx:59:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorNuclei.cxx:65:53: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorNuclei.cxx:66:26: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorNuclei.cxx:80:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorNuclei.cxx:136:16: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorNuclei.cxx:154:13: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/LFTreeCreatorNuclei.cxx:360:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx` ```text PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:18:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:30:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:37:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:40:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:44:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:46:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:60:1: warning: included header KFPTrack.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:61:1: warning: included header KFPVertex.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:63:1: warning: included header KFParticleBase.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:64:1: warning: included header KFVertex.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:70:19: warning: no header providing "o2::common::core::MetadataHelper" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:95:8: warning: constructor does not initialize these fields: mRunNumber, d_bz, ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:107:12: warning: no header providing "o2::framework::ProducesGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:108:5: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:115:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:115:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:133:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:190:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:190:69: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:191:107: warning: no header providing "o2::constants::math::Deg2Rad" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:211:10: warning: constructor does not initialize these fields: label, genCt, genPhi, genEta, genRapidity, genMomProton, genMomPion, genMomDeuteron, genPtProton, genPtPion, genPtDeuteron, isTrueH3L, isTrueAntiH3L, isReco, motherPdgCode, daughterPrPdgCode, daughterPiPdgCode, daughterDePdgCode, isDeuteronPrimary, survivedEventSel [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:240:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:243:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:246:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:246:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:256:26: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:261:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:271:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:311:42: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:412:27: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:412:97: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:435:89: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:546:11: warning: variable 'magField' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:604:109: warning: no header providing "std::endl" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:628:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:631:50: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:645:50: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:645:105: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:725:13: warning: variable 'tofNSigmaDeuteron' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:818:14: warning: variable 'isMuonReco' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:828:203: warning: no header providing "o2::constants::physics::MassHyperTriton" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:864:71: warning: no header providing "o2::constants::physics::Pdg" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:872:47: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:1267:60: warning: no header providing "TObject" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:1294:31: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:1298:11: warning: variable 'bin_Radius' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:1298:23: warning: variable 'bin_Phi' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:1357:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Nuspex/ebyeMaker.cxx` ```text PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:17:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:19:1: warning: included header PIDTOF.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:20:1: warning: included header TPCPIDResponse.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:27:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:28:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:36:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:38:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:42:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:44:1: warning: included header TFormula.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:71:60: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:71:96: warning: no header providing "o2::constants::physics::MassDeuteron" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:72:35: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:72:75: warning: no header providing "o2::constants::physics::kDeuteron" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:79:21: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:81:8: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:87:23: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:87:33: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:94:26: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:96:32: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:131:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:159:18: warning: no header providing "BIT" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:184:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, dBz, nTrackletsColl, nTracksColl, nChPartGen, nTracksCollFull, ptMin, ptTof, ptMax, nSigmaTpcCutLow, nSigmaTpcCutUp [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:185:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:196:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:207:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:208:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:211:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:212:9: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:212:18: warning: member 'centAxis' of type 'const AxisSpec' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:213:18: warning: member 'zVtxAxis' of type 'const AxisSpec' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:214:18: warning: member 'nTpcAxis' of type 'const AxisSpec' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:215:18: warning: member 'dcaAxis' of type 'const AxisSpec' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:216:18: warning: member 'phiAxis' of type 'const AxisSpec' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:217:18: warning: member 'signMomAxis' of type 'const AxisSpec' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:220:83: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:289:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:289:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:303:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:338:49: warning: no header providing "o2::aod::track::Run2Track" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:339:45: warning: no header providing "o2::aod::track::TPCrefit" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:342:66: warning: no header providing "o2::aod::track::ITSrefit" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:379:85: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:469:21: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:516:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:539:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:539:62: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:541:18: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:548:16: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:589:5: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:591:48: warning: no header providing "o2::aod::track::TrackTypeEnum" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:599:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:603:23: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:626:120: warning: no header providing "o2::constants::physics::invLightSpeedCm2PS" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:628:49: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:695:9: warning: uninitialized record type: 'momPos' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:696:9: warning: uninitialized record type: 'momNeg' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:697:9: warning: uninitialized record type: 'momV0' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:714:94: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:729:57: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:741:31: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:763:52: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:946:88: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:946:149: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:946:209: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:946:266: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:946:327: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:946:387: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:969:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:988:53: warning: no header providing "kINT7" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx` ```text PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:18:1: warning: included header EPCalibrationTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:24:1: warning: included header TPCPIDResponse.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:26:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:37:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:42:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:44:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:48:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:51:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:53:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:54:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:55:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:56:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:57:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:59:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:60:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:67:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:76:37: warning: no header providing "o2::math_utils::Bracket" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:90:48: warning: no header providing "o2::constants::physics::Pdg" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:104:20: warning: no header providing "BIT" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:158:3: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:162:3: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:174:3: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:206:3: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:209:8: warning: constructor does not initialize these fields: mBBparamsHe, mRunNumber, mDbz, mCcdb [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:211:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:217:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:241:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:276:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:278:23: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:281:3: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:289:18: warning: no header providing "o2::vertexing::DCAFitterN" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:293:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:295:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:300:73: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:336:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:340:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:372:60: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:483:74: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:492:5: warning: uninitialized record type: 'parameters' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:493:14: warning: no header providing "std::strcmp" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:579:124: warning: no header providing "o2::constants::physics::MassHelium3" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:678:152: warning: no header providing "o2::constants::physics::MassPiPlus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:680:152: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:703:7: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:1069:13: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:1082:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx` ```text PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:19:1: warning: included header PIDResponseITS.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:25:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:27:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:36:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:37:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:39:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:55:11: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:72:17: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:86:8: warning: constructor does not initialize these fields: ccdb, mBBparamsHe [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:89:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:91:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:94:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:99:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:101:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:118:18: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:157:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:165:60: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:181:58: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:183:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:184:21: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:199:65: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:199:102: warning: no header providing "o2::constants::physics::MassNeutron" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:199:144: warning: no header providing "o2::constants::physics::MassSigmaPlus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:255:27: warning: no header providing "o2::math_utils::Point3D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:263:107: warning: no header providing "o2::constants::physics::MassHelium3" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:270:7: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:320:7: warning: uninitialized record type: 'momNeg' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:320:7: warning: uninitialized record type: 'momPos' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:338:19: warning: no header providing "ROOT::Math::LorentzVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:338:45: warning: no header providing "ROOT::Math::PxPyPzM4D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:339:133: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:343:57: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:348:7: warning: uninitialized record type: 'dcaInfoPion' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:348:7: warning: uninitialized record type: 'dcaInfoProton' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/he3LambdaAnalysis.cxx:394:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Nuspex/hyhe4builder.cxx` ```text PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:25:1: warning: included header map is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:26:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:27:1: warning: included header utility is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:30:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:33:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:35:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:36:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:38:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:39:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:40:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:41:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:64:70: warning: no header providing "o2::aod::pidTPCFullEl" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:64:89: warning: no header providing "o2::aod::pidTPCFullPi" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:64:108: warning: no header providing "o2::aod::pidTPCFullPr" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:64:127: warning: no header providing "o2::aod::pidTPCFullHe" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:72:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz, maxSnp, maxStep, hyHe4Candidate [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:73:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:75:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:77:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:104:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:107:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:107:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:112:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:114:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:121:40: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:252:5: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:293:41: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:364:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:371:13: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:374:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:483:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:503:3: warning: no header providing "o2::framework::Spawns" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx` ```text PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:27:1: warning: included header PIDResponseTPC.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:33:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:37:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:39:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:44:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:57:1: warning: included header KFPTrack.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:60:1: warning: included header KFParticleBase.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:61:1: warning: included header KFVertex.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:183:3: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:186:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:188:3: warning: constructor does not initialize these fields: betheParams [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:188:80: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:220:30: warning: Address of stack memory associated with temporary object of type 'TString' returned to caller [clang-analyzer-core.StackAddressEscape] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:221:33: warning: Address of stack memory associated with temporary object of type 'TString' returned to caller [clang-analyzer-core.StackAddressEscape] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:225:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:231:3: warning: constructor does not initialize these fields: dcaToPv, dcaToPvXY, dcaToPvZ, active [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:232:3: warning: constructor does not initialize these fields: tpcNsigma, tpcNsigmaNLP, tpcNsigmaNHP, active [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:238:21: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:261:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:284:47: warning: no header providing "std::isnan" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:290:59: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:380:20: warning: no header providing "std::pair" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:413:18: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:413:29: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:414:29: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:419:8: warning: constructor does not initialize these fields: usePidResponse, response, betheParams, ccdb, collHasCandidate, collHasMcTrueCandidate, collPassedEvSel, activeCascade, isMC, mcCollTableIndex, mRunNumber, occupancy, dBz [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:421:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:431:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:431:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:433:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:465:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:490:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:534:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:543:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:549:44: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:553:38: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:553:120: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:577:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:634:22: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:740:94: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:960:17: warning: variable 'trackTableId' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:996:15: warning: variable 'mcPartTableId' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:1034:17: warning: variable 'svx' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:1034:22: warning: variable 'svy' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:1034:27: warning: variable 'svz' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:1075:13: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:1102:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:1153:20: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:1201:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:1237:12: warning: variable 'parBB' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:1249:29: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:1300:5: warning: uninitialized record type: 'fP' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:1301:5: warning: uninitialized record type: 'fM' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:1309:5: warning: uninitialized record type: 'fC' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:1333:14: warning: no header providing "std::find" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx` ```text PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:18:1: warning: included header TPCPIDResponse.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:20:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:21:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:22:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:23:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:25:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:26:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:27:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:28:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:29:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:30:1: warning: included header BetheBlochAleph.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:31:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:32:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:33:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:37:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:43:14: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:47:18: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:47:29: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:52:3: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:61:3: warning: constructor does not initialize these fields: cent, occu, runNumber [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:61:727: warning: 3 uninitialized fields at the end of the constructor call [clang-analyzer-optin.cplusplus.UninitializedObject] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:117:42: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:331:8: warning: constructor does not initialize these fields: isMC [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:333:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:333:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:334:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:345:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:355:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:357:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:359:42: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:371:30: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:381:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:707:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:715:13: warning: no header providing "std::max_element" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:729:17: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:737:19: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:756:24: warning: no header providing "std::array" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx` ```text PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:19:1: warning: included header TPCPIDResponse.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:28:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:34:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:36:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:41:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:52:37: warning: no header providing "o2::math_utils::Bracket" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:64:17: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:70:17: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:82:8: warning: constructor does not initialize these fields: heTrackID, piTrackID, momHe3, momPi, decVtx, gMom, gMomHe3, gDecVtx [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:83:41: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:84:42: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:85:42: warning: no header providing "std::asinh" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:110:3: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:116:3: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:120:3: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:124:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:137:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz, mBBparamsHe [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:139:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:143:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:145:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:148:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:169:37: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:172:43: warning: no header providing "o2::constants::physics::MassHelium3" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:173:43: warning: no header providing "o2::constants::physics::MassAlpha" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:174:42: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:180:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:196:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:214:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:214:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:220:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:248:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:254:109: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:319:21: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:330:58: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:341:63: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:356:48: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:369:48: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:369:103: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:380:50: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:387:50: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:449:42: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:491:23: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:496:5: warning: uninitialized record type: 'hypMom' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:508:43: warning: no header providing "o2::constants::physics::MassHyperTriton" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:510:43: warning: no header providing "o2::constants::physics::MassHyperhydrog4" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:556:5: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:709:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:843:7: warning: uninitialized record type: 'secVtx' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx:846:7: warning: uninitialized record type: 'momHe3' [cppcoreguidelines-pro-type-member-init] ``` #### `PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx` ```text PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:31:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:32:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:34:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:38:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:49:19: warning: no header providing "o2::common::core::MetadataHelper" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:69:16: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:74:17: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:76:17: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:112:35: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:231:12: warning: no header providing "o2::track::TrackParametrization" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:236:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:236:41: warning: no header providing "o2::track::kNParams" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:244:34: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:248:8: warning: no header providing "std::fill" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:268:87: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:338:3: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:342:3: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:365:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, mBz [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:367:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:370:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:374:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:376:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:397:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:412:17: warning: no header providing "o2::pid::tof::TOFResoParamsV3" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:415:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:438:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:449:57: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:628:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:682:23: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:712:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:729:63: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:729:118: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:847:30: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:849:32: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:889:9: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:938:16: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:987:48: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/hyperkinkRecoTask.cxx:990:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx` ```text PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:22:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:25:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:31:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:33:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:38:1: warning: included header PIDTOF.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:39:1: warning: included header TPCPIDResponse.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:40:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:68:17: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:74:17: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:120:23: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:128:8: warning: constructor does not initialize these fields: posTrackID, negTrackID, mom3H, momPi, decVtx, gMom, gMom3H, gMomPi, gDecVtx [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:129:40: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:130:41: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:131:41: warning: no header providing "std::asinh" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:170:3: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:172:3: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:174:3: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:185:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz, mBBparams3H [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:187:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:189:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:192:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:215:42: warning: no header providing "o2::constants::physics::MassTriton" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:216:42: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:219:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:237:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:266:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:266:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:273:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:293:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:310:114: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:406:21: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:417:57: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:439:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:569:22: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:570:7: warning: uninitialized record type: 'lnnMom' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:616:7: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:662:24: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:771:13: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:792:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:894:7: warning: uninitialized record type: 'secVtx' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:900:7: warning: uninitialized record type: 'mom3H' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:901:7: warning: uninitialized record type: 'momPi' [cppcoreguidelines-pro-type-member-init] ``` #### `PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx` ```text PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx:24:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx:27:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx:32:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx:63:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx:63:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx:64:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx:66:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx:69:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx:114:70: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx:157:66: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx:178:21: warning: no header providing "o2::track::TrackParCov" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx:210:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx:513:11: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx:515:11: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx:541:13: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx:570:76: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx:719:15: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx:765:21: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx` ```text PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:26:1: warning: included header EventPlaneHelper.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:28:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:29:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:36:1: warning: included header PIDResponseITS.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:39:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:40:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:41:1: warning: included header TrackTuner.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:45:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:47:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:49:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:54:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:56:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:61:1: warning: included header memory is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:70:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:72:15: warning: no header providing "BIT" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:86:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:89:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:91:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:93:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:108:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:117:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:122:14: warning: no header providing "o2::track::TrackParametrizationWithError" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:145:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:157:94: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:167:99: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:172:103: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:177:108: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:182:108: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:187:109: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:227:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:236:58: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:237:17: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:260:29: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:295:27: warning: no header providing "o2::math_utils::Point3D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:316:61: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:323:7: warning: uninitialized record type: 'nSigmaTPC' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:323:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:344:7: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:351:7: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:373:21: warning: no header providing "ROOT::Math::LorentzVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:373:47: warning: no header providing "ROOT::Math::PtEtaPhiM4D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:438:138: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:439:151: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiFlowTree.cxx:459:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx` ```text PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:25:1: warning: included header EventPlaneHelper.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:28:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:38:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:39:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:43:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:45:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:47:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:52:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:54:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:86:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:93:3: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:94:3: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:100:3: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:181:27: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:181:39: warning: no header providing "o2::constants::physics::MassDeuteron" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:181:53: warning: no header providing "o2::constants::physics::MassTriton" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:181:65: warning: no header providing "o2::constants::physics::MassHelium3" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:181:78: warning: no header providing "o2::constants::physics::MassAlpha" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:197:17: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:199:17: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:207:17: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:210:17: warning: no header providing "THn" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:211:11: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:251:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:253:15: warning: no header providing "BIT" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:267:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:271:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:273:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:275:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:277:27: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:279:18: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:313:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:337:20: warning: no header providing "o2::dataformats::DCA" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:338:14: warning: no header providing "o2::track::TrackParametrizationWithError" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:358:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:387:48: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:387:173: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:410:103: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:415:108: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:420:108: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:425:109: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:462:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:471:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:471:53: warning: no header providing "fmt::format" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:503:58: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:504:17: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:524:57: warning: no header providing "fmt::format" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:527:60: warning: no header providing "fmt::format" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:534:58: warning: no header providing "fmt::format" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:562:266: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:606:27: warning: no header providing "o2::math_utils::Point3D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:630:61: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:646:7: warning: uninitialized record type: 'nSigmaTPC' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:665:7: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:694:21: warning: no header providing "ROOT::Math::LorentzVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:694:47: warning: no header providing "ROOT::Math::PtEtaPhiM4D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:822:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:845:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Nuspex/particleCompositionCorrection.cxx` ```text PWGLF/TableProducer/Nuspex/particleCompositionCorrection.cxx:38:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/particleCompositionCorrection.cxx:55:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/particleCompositionCorrection.cxx:58:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/particleCompositionCorrection.cxx:73:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/particleCompositionCorrection.cxx:74:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/particleCompositionCorrection.cxx:75:21: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/particleCompositionCorrection.cxx:75:69: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/particleCompositionCorrection.cxx:77:134: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/particleCompositionCorrection.cxx:94:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/particleCompositionCorrection.cxx:107:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/particleCompositionCorrection.cxx:109:38: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/particleCompositionCorrection.cxx:129:23: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/particleCompositionCorrection.cxx:137:28: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx` ```text PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:21:1: warning: included header utility is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:22:1: warning: included header vector is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:27:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:37:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:39:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:41:1: warning: included header HistogramRegistry.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:44:1: warning: included header ParamBase.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:52:19: warning: no header providing "o2::common::core::MetadataHelper" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:64:46: warning: no header providing "o2::aod::track::TrackTypeEnum" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:70:44: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:83:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:85:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:94:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:106:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:109:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:150:21: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:155:25: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:156:33: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:158:39: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:158:54: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:160:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:160:53: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:165:25: warning: no header providing "o2::aod::FT0s" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:167:25: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:181:14: warning: no header providing "CollisionSystemType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:216:39: warning: no header providing "float_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:223:66: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:241:52: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:247:11: warning: Value stored to 'weight' is never read [clang-analyzer-deadcode.DeadStores] PWGLF/TableProducer/Nuspex/pidTOFGeneric.cxx:345:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx` ```text PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:17:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:24:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:37:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:38:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:40:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:44:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:46:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:58:1: warning: included header KFPTrack.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:59:1: warning: included header KFPVertex.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:61:1: warning: included header KFParticleBase.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:62:1: warning: included header KFVertex.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:68:19: warning: no header providing "o2::common::core::MetadataHelper" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:78:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, mBz [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:80:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:87:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:89:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:94:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:100:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:124:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:126:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:130:42: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:152:60: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:154:39: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:238:19: warning: no header providing "std::runtime_error" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:261:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:264:48: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:279:48: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:279:103: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:366:107: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:367:105: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:372:108: warning: no header providing "o2::constants::physics::MassDeuteron" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:374:13: warning: variable 'radius' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:374:21: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:374:26: warning: variable 'posZ' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:391:13: warning: variable 'phiVtx' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:391:21: warning: variable 'rVtx' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:391:27: warning: variable 'zVtx' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:421:3: warning: no header providing "o2::framework::Spawns" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx` ```text PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:21:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:35:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:37:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:39:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:47:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:52:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:70:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:72:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:99:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:101:37: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:103:25: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:116:35: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:120:84: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:217:55: warning: no header providing "rand_r" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:217:97: warning: no header providing "RAND_MAX" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:261:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:261:45: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:262:42: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:262:55: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:265:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:272:25: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:318:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:320:64: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:322:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:322:17: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:322:58: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:323:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:325:49: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/spectraDerivedMaker.cxx:329:23: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx` ```text PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:28:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:30:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:31:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:32:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:33:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:34:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:36:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:38:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:39:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:40:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:41:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:42:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:46:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:48:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:49:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:50:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:51:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:52:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:53:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:54:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:55:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:64:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:70:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:72:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:72:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:75:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:82:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:87:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:90:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:93:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:122:10: warning: no header providing "std::iota" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:165:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx` ```text PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:16:1: warning: included header MetadataHelper.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:21:1: warning: included header pidTOFGeneric.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:23:1: warning: included header TPCPIDResponse.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:25:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:27:1: warning: included header CollisionAssociationTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:33:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:35:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:36:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:37:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:38:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:39:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:40:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:46:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:48:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:50:1: warning: included header limits is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:51:1: warning: included header map is not used directly [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:69:30: warning: no header providing "o2::aod::pidTPCFullPr" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:69:49: warning: no header providing "o2::aod::pidTPCFullDe" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:70:18: warning: no header providing "o2::aod::pidTPCFullTr" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:70:37: warning: no header providing "o2::aod::pidTPCFullHe" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:70:56: warning: no header providing "o2::aod::pidTPCFullAl" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:81:38: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:82:36: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:236:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:243:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:246:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:250:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:261:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:265:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:290:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:299:20: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:299:31: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:300:15: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:303:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:309:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:317:46: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:321:50: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:323:63: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:325:30: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:334:16: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:343:23: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:370:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:429:48: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:430:48: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:431:48: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:483:17: warning: variable 'tpcNsigma' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:708:12: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:751:32: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/QC/flowQC.cxx` ```text PWGLF/TableProducer/QC/flowQC.cxx:24:1: warning: included header EventPlaneHelper.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:25:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:34:1: warning: included header BetheBlochAleph.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:35:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:37:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:43:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:61:19: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:61:31: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:80:6: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:80:17: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:82:17: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:91:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/QC/flowQC.cxx:93:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:95:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:98:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:118:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:126:139: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:126:228: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:131:25: warning: no header providing "TMath::ATan2" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:160:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:167:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:172:53: warning: no header providing "fmt::format" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:174:40: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:185:57: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:252:27: warning: no header providing "o2::math_utils::Point3D" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/flowQC.cxx:313:10: warning: no header providing "std::array" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/QC/nucleiQC.cxx` ```text PWGLF/TableProducer/QC/nucleiQC.cxx:17:1: warning: included header EPCalibrationTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:21:1: warning: included header EventPlaneHelper.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:22:1: warning: included header PIDTOF.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:23:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:24:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:26:1: warning: included header ZorroSummary.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:30:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:31:1: warning: included header PIDResponseITS.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:34:1: warning: included header Qvectors.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:35:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:36:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:41:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:42:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:44:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:50:1: warning: included header BetheBlochAleph.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:51:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:53:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:67:8: warning: constructor does not initialize these fields: mCcdb, mDcaInfo [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/QC/nucleiQC.cxx:74:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:77:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:87:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:87:45: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:105:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:112:73: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:118:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:121:19: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:125:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:133:20: warning: no header providing "o2::dataformats::DCA" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:135:14: warning: no header providing "o2::track::TrackParametrizationWithError" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:138:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:145:29: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:170:56: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:241:7: warning: suspicious exception object created but not thrown; did you mean 'throw runtime_error'? [bugprone-throw-keyword-missing] PWGLF/TableProducer/QC/nucleiQC.cxx:241:12: warning: no header providing "std::runtime_error" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:301:35: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:330:50: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:347:27: warning: no header providing "o2::math_utils::Point3D" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/nucleiQC.cxx:374:7: warning: suspicious exception object created but not thrown; did you mean 'throw runtime_error'? [bugprone-throw-keyword-missing] PWGLF/TableProducer/QC/nucleiQC.cxx:437:7: warning: suspicious exception object created but not thrown; did you mean 'throw runtime_error'? [bugprone-throw-keyword-missing] PWGLF/TableProducer/QC/nucleiQC.cxx:581:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/QC/strangenessQC.cxx` ```text PWGLF/TableProducer/QC/strangenessQC.cxx:32:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/QC/strangenessQC.cxx:34:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:38:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:38:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:42:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:68:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:70:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:73:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:77:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:81:5: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:83:10: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:83:41: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:83:46: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:108:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:109:24: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:109:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:125:31: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:125:41: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:125:56: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:127:25: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:127:49: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:144:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:162:101: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:202:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:209:36: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/TableProducer/QC/strangenessQC.cxx:231:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx` ```text PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:20:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:21:1: warning: included header Zorro.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:22:1: warning: included header ZorroSummary.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:30:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:31:1: warning: included header CcdbApi.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:32:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:33:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:40:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:41:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:42:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:45:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:47:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:56:8: warning: constructor does not initialize these fields: centrality [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:59:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:103:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:111:98: warning: no header providing "o2::aod::CentFT0Ms" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:111:114: warning: no header providing "o2::aod::CentFT0Cs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:117:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:120:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:123:47: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:124:43: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:125:43: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:126:43: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:130:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:132:35: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:166:12: warning: variable 'pt1' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:166:17: warning: variable 'pt2' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:166:22: warning: variable 'pz1' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:166:27: warning: variable 'pz2' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:166:32: warning: variable 'p1' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:166:36: warning: variable 'p2' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:166:40: warning: variable 'angle' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:226:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:227:15: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:241:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:256:29: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:260:67: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:260:126: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:260:186: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:260:245: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:273:46: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Resonances/cksspinalignment.cxx` ```text PWGLF/TableProducer/Resonances/cksspinalignment.cxx:19:1: warning: included header LFStrangenessPIDTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:21:1: warning: included header Index.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:24:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:27:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:36:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:40:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:42:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:44:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:45:1: warning: included header Vector2D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:46:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:47:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:49:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:58:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:58:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:61:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:63:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:67:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:69:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:70:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:106:22: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:140:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:141:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:142:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:145:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:147:34: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:350:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:391:105: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:391:164: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:391:223: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:391:282: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:391:380: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:391:497: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:404:77: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:471:16: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/cksspinalignment.cxx:531:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Resonances/doublephitable.cxx` ```text PWGLF/TableProducer/Resonances/doublephitable.cxx:19:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:20:1: warning: included header Zorro.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:21:1: warning: included header ZorroSummary.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:29:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:30:1: warning: included header CcdbApi.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:31:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:32:1: warning: included header BetheBlochAleph.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:33:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:40:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:41:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:42:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:44:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:46:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:48:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:60:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:96:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:101:76: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:106:32: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:108:43: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:133:12: warning: variable 'pt1' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Resonances/doublephitable.cxx:133:17: warning: variable 'pt2' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Resonances/doublephitable.cxx:133:22: warning: variable 'pz1' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Resonances/doublephitable.cxx:133:27: warning: variable 'pz2' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Resonances/doublephitable.cxx:133:32: warning: variable 'p1' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Resonances/doublephitable.cxx:133:36: warning: variable 'p2' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Resonances/doublephitable.cxx:133:40: warning: variable 'angle' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Resonances/doublephitable.cxx:147:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:155:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:170:29: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:175:65: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:175:124: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:175:184: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:175:243: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/doublephitable.cxx:187:48: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Resonances/f1protonInitializer.cxx` ```text PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:17:1: warning: included header collisionCuts.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:19:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:20:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:21:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:22:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:23:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:33:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:35:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:36:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:37:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:38:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:39:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:40:1: warning: included header THn.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:42:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:43:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:44:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:58:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:61:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:91:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:92:76: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:109:32: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:118:56: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:227:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:299:16: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonInitializer.cxx:375:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx` ```text PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:20:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:24:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:32:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:33:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:42:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:49:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:59:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:62:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:66:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:70:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:157:13: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:159:76: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:177:32: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:179:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:185:43: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:185:70: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:185:97: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:383:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:394:36: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:400:19: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:400:46: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:404:17: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:417:43: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:479:23: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:523:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:713:128: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Resonances/filterf1proton.cxx` ```text PWGLF/TableProducer/Resonances/filterf1proton.cxx:20:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:21:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:22:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:29:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:40:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:41:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:45:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:53:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Resonances/filterf1proton.cxx:55:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:57:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:135:76: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:152:32: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:154:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:160:43: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:160:70: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:160:97: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:235:59: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:343:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:354:36: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:360:19: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:360:46: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:364:17: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:376:10: warning: no header providing "std::map" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:377:43: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/filterf1proton.cxx:386:5: warning: no header providing "TAxis" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Resonances/resonanceInitializer.cxx` ```text PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:22:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:24:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:36:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:41:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:55:8: warning: constructor does not initialize these fields: mRunNumber, multEstimator, dBz, ccdb, pdg [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:60:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:63:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:82:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:105:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:105:42: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:110:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:130:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:208:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:208:48: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:228:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:247:115: warning: no header providing "o2::aod::Mults" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:403:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:610:23: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:611:23: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:623:24: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:666:7: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:715:29: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:717:29: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:1125:57: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:1170:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:1222:7: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:1222:35: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:1222:62: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:1222:89: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:1228:7: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:1230:66: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:1234:64: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:1280:18: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceInitializer.cxx:1291:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx` ```text PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:30:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:31:1: warning: included header collisionCuts.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:33:1: warning: included header EventPlaneHelper.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:34:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:35:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:36:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:37:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:38:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:39:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:40:1: warning: included header Qvectors.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:41:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:43:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:44:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:45:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:46:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:47:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:50:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:52:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:65:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:86:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:86:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:88:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:91:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:92:60: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:95:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:103:38: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:103:56: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:105:38: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:135:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:183:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:187:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:216:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:292:9: warning: do not use const_cast to remove const qualifier [cppcoreguidelines-pro-type-const-cast] PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:544:23: warning: do not use const_cast to remove const qualifier [cppcoreguidelines-pro-type-const-cast] ``` #### `PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx` ```text PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:18:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:23:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:24:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:25:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:26:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:27:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:33:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:37:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:42:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:62:8: warning: constructor does not initialize these fields: mRunNumber, multEstimator, dBz, centrality, ccdb, pdg [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:67:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:71:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:78:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:95:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:95:42: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:117:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:130:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:130:48: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:139:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:188:7: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:188:35: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:188:62: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:188:89: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:194:7: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:196:66: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:218:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:241:18: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:311:79: warning: no header providing "o2::aod::MultsExtraMC" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:336:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:349:23: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:350:23: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:362:24: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:475:57: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:528:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:679:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:715:67: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:719:49: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:829:7: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:892:29: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceModuleInitializer.cxx:894:18: warning: no header providing "int8_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx` ```text PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:16:1: warning: included header mcCentrality.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:17:1: warning: included header inelGt.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:19:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:20:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:21:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:30:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:33:1: warning: included header HistogramRegistry.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:36:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:38:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:41:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:42:1: warning: included header array is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:46:1: warning: included header utility is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:47:1: warning: included header vector is not used directly [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:94:32: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:153:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:155:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:159:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:176:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:186:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:201:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:209:11: warning: variable 'nSigmaTPC' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:209:22: warning: variable 'nSigmaTOF' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:241:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:262:60: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Resonances/resonanceTreeCreator.cxx:319:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/stracentconverter.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/stracentconverter.cxx:21:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/stradautracksconverter.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/stradautracksconverter.cxx:32:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/stradautracksextraconverter.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/stradautracksextraconverter.cxx:15:1: warning: included header LFStrangenessPIDTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/stradautracksextraconverter.cxx:22:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/stradautracksextraconverter2.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/stradautracksextraconverter2.cxx:15:1: warning: included header LFStrangenessPIDTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/stradautracksextraconverter2.cxx:22:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/stradautracksextraconverter2.cxx:33:38: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/stradautracksextraconverter2.cxx:34:38: warning: no header providing "int8_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/stradautracksextraconverter3.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/stradautracksextraconverter3.cxx:15:1: warning: included header LFStrangenessPIDTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/stradautracksextraconverter3.cxx:22:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/stradautrackstofpidconverter.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/stradautrackstofpidconverter.cxx:22:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/stradautrackstofpidconverter.cxx:27:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/stradautrackstofpidconverter2.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/stradautrackstofpidconverter2.cxx:23:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/stradautrackstofpidconverter2.cxx:36:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/stradautrackstpcpidconverter.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/stradautrackstpcpidconverter.cxx:12:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/stradautrackstpcpidconverter.cxx:23:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/straevselsconverter.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/straevselsconverter.cxx:21:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/straevselsconverter2.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/straevselsconverter2.cxx:23:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/straevselsconverter2rawcents.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/straevselsconverter2rawcents.cxx:21:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/straevselsconverter2rawcents2.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/straevselsconverter2rawcents2.cxx:21:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/straevselsconverter2rawcents3.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/straevselsconverter2rawcents3.cxx:21:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/straevselsconverter3.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/straevselsconverter3.cxx:23:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/straevselsconverter4.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/straevselsconverter4.cxx:22:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/straevselsconverter5.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/straevselsconverter5.cxx:23:14: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/straevselsconverter5.cxx:23:57: warning: no header providing "o2::constants::lhc::LHCMaxBunches" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/straevselsconverter5.cxx:26:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/Converters/straevselsconverter5.cxx:27:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/straevselsconverter5.cxx:29:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/straevselsconverter5.cxx:32:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/straevselsconverter5.cxx:33:3: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/straevselsconverter5.cxx:34:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/straevselsconverter5.cxx:38:8: warning: no header providing "std::map" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/straevselsconverter5.cxx:55:21: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/straevselsconverter5.cxx:56:25: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/straevselsconverter5.cxx:63:29: warning: no header providing "std::pair" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/stramccollisionconverter.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/stramccollisionconverter.cxx:21:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/stramccollisionconverter2.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/stramccollisionconverter2.cxx:29:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/stramccollmultconverter.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/stramccollmultconverter.cxx:21:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/strarawcentsconverter.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/strarawcentsconverter.cxx:21:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/strarawcentsconverter.cxx:50:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/strarawcentsconverter2v4.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/strarawcentsconverter2v4.cxx:21:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/strastampsconverter.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/strastampsconverter.cxx:21:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/v0coresconverter.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/v0coresconverter.cxx:21:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/v0coresconverter2.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/v0coresconverter2.cxx:21:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/v0mlscoresconverter.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/v0mlscoresconverter.cxx:13:1: warning: included header AnalysisDataModel.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/v0mlscoresconverter.cxx:22:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/v0mlscoresconverter.cxx:29:10: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/Converters/zdcneutronsconverter.cxx` ```text PWGLF/TableProducer/Strangeness/Converters/zdcneutronsconverter.cxx:13:1: warning: included header AnalysisDataModel.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/Converters/zdcneutronsconverter.cxx:22:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx` ```text PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:17:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:18:1: warning: included header Zorro.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:19:1: warning: included header ZorroSummary.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:25:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:26:1: warning: included header CcdbApi.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:27:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:28:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:35:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:36:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:37:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:39:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:41:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:50:8: warning: constructor does not initialize these fields: centrality [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:53:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:89:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:97:98: warning: no header providing "o2::aod::CentFT0Ms" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:97:114: warning: no header providing "o2::aod::CentFT0Cs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:103:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:107:47: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:108:43: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:109:43: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:113:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:115:35: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:188:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:200:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:210:29: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:213:67: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:213:126: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:213:186: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:213:245: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx` ```text PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:30:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:31:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:32:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:33:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:34:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:35:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:36:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:38:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:39:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:41:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:44:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:46:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:48:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:49:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:50:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:51:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:52:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:53:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:54:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:63:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:64:12: warning: no header providing "std::cout" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:64:12: warning: using decl 'cout' is unused [misc-unused-using-decls] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:65:12: warning: using decl 'endl' is unused [misc-unused-using-decls] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:69:8: warning: constructor does not initialize these fields: cascadeCandidate [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:70:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:71:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:71:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:74:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:98:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:100:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:102:56: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:107:5: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:115:5: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:329:14: warning: no header providing "TMath::ACos" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:341:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:354:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/cascadefinder.cxx` ```text PWGLF/TableProducer/Strangeness/cascadefinder.cxx:31:1: warning: included header CandidateReconstructionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:36:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:43:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:49:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:50:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:51:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:52:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:53:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:54:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:55:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:56:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:69:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:79:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:84:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:96:46: warning: no header providing "o2::aod::track::TPCrefit" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:141:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:141:13: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:145:51: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:181:5: warning: no header providing "Long_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:249:13: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:253:23: warning: no header providing "o2::base::Propagator" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:255:206: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:255:242: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:256:245: warning: no header providing "o2::constants::physics::MassKaonCharged" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:339:13: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:376:13: warning: no header providing "TH3F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:402:30: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadefinder.cxx:416:22: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/cascadeflow.cxx` ```text PWGLF/TableProducer/Strangeness/cascadeflow.cxx:22:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:23:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:24:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:25:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:31:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:34:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:45:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:47:24: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:78:17: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:80:17: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:84:17: warning: no header providing "THn" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:156:8: warning: constructor does not initialize these fields: ccdb, shiftprofile, shiftprofileFT0C, shiftprofileFV0A, shiftprofileFT0A, shiftprofileTPCL, shiftprofileTPCR, hAcceptanceXi, hAcceptanceOmega, hAcceptanceLambda, hAcceptancePrimaryLambda, hReso, hCentWeight [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:158:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:165:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:182:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:200:58: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:203:97: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:290:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:309:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:317:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:318:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:328:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:349:72: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:356:70: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:377:81: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:380:79: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStrict" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:388:75: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:488:5: warning: no header providing "Float_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:488:25: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:517:35: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:527:3: warning: no header providing "TProfile3D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:550:72: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:550:148: warning: no header providing "TMath::Sin" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:599:3: warning: no header providing "TH2F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:605:3: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:610:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:610:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:615:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:626:56: warning: no header providing "std::exp" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:658:55: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:658:92: warning: no header providing "o2::constants::physics::MassOmegaMinus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:659:17: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:660:43: warning: variable 'cosThetaStarProton' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:661:108: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:662:17: warning: no header providing "ROOT::Math::Boost" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:664:101: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:749:5: warning: no header providing "TList" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:762:69: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:814:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:821:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:832:5: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:836:58: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:874:42: warning: no header providing "o2::framework::kTProfile3D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:881:10: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:884:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:899:64: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1165:34: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1166:148: warning: no header providing "kKPlus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1214:17: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1217:54: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1217:80: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1220:31: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1348:36: warning: variable 'cosThetaStarProton' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1365:30: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1365:40: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1656:45: warning: variable 'cosThetaStarProton' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1878:31: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:2441:79: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:2499:26: warning: no header providing "std::atan" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:2510:31: warning: no header providing "std::log" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:2510:40: warning: no header providing "std::tan" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadeflow.cxx:2653:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx` ```text PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:24:1: warning: included header map is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:25:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:26:1: warning: included header utility is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:29:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:33:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:34:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:35:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:48:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:56:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:70:10: warning: constructor does not initialize these fields: label, motherLabel, mcCollision, pdgCode, pdgCodeMother, pdgCodeV0, pdgCodePositive, pdgCodeNegative, pdgCodeBachelor, isPhysicalPrimary, xyz, lxyz, posP, negP, bachP, momentum, mcParticlePositive, mcParticleNegative, mcParticleBachelor [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:132:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:133:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:255:14: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:529:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/cascademcfinder.cxx` ```text PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:29:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:30:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:31:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:32:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:33:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:35:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:37:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:38:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:39:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:40:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:41:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:45:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:47:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:48:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:49:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:50:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:51:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:52:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:53:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:54:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:63:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:71:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:73:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:73:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:76:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:87:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:91:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:94:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:97:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:120:68: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:137:10: warning: no header providing "std::iota" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:232:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/cascademlselection.cxx` ```text PWGLF/TableProducer/Strangeness/cascademlselection.cxx:24:1: warning: included header LFStrangenessPIDTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:27:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:28:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:29:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:30:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:31:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:32:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:33:1: warning: included header MlResponse.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:38:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:43:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:45:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:46:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:47:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:48:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:49:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:50:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:51:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:62:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:63:12: warning: no header providing "std::cout" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:63:12: warning: using decl 'cout' is unused [misc-unused-using-decls] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:64:12: warning: using decl 'endl' is unused [misc-unused-using-decls] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:72:8: warning: constructor does not initialize these fields: ccdb, mRunNumber [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:79:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:81:8: warning: no header providing "std::map" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:81:17: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:83:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:86:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:89:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:90:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:94:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:95:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:112:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:131:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:221:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:224:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascademlselection.cxx:318:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/cascadespawner.cxx` ```text PWGLF/TableProducer/Strangeness/cascadespawner.cxx:20:1: warning: included header array is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadespawner.cxx:22:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadespawner.cxx:23:1: warning: included header utility is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadespawner.cxx:26:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadespawner.cxx:28:1: warning: included header AnalysisDataModel.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadespawner.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadespawner.cxx:30:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascadespawner.cxx:39:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx` ```text PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:46:25: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:47:34: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:47:70: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:50:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:53:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:56:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:59:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:62:34: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:78:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:95:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:120:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:122:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:129:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:130:5: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:133:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:135:5: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:139:43: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:141:39: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:141:44: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:190:39: warning: no header providing "o2::aod::rctsel::kFV0Bad" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:194:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:195:6: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:201:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:201:66: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:201:96: warning: no header providing "o2::aod::track::flags" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:201:116: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:201:142: warning: no header providing "o2::aod::track::PVContributor" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:227:3: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:299:62: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:308:69: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:317:70: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:326:64: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:333:69: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:340:67: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:347:68: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:354:75: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeNarrow" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:381:35: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:384:25: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:394:82: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:451:32: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:453:50: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:454:53: warning: no header providing "o2::constants::physics::MassOmegaMinus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:480:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:480:17: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:480:64: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:482:57: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:488:36: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:558:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:628:32: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/cascqaanalysis.cxx:759:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx` ```text PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:15:1: warning: included header TPCPIDResponse.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:16:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:19:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:20:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:24:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:28:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:29:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:30:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:31:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:36:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:38:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:40:1: warning: included header random is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:41:1: warning: included header utility is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:77:8: warning: constructor does not initialize these fields: ccdb, mRunNumber [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:78:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:80:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:86:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:88:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:91:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:95:81: warning: no header providing "o2::constants::physics::MassOmegaMinus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:96:75: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:117:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:117:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:150:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:161:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:161:62: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:162:16: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:225:21: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:225:50: warning: no header providing "o2::constants::physics::MassKaonCharged" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:226:50: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:229:23: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:242:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:299:46: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:299:107: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:333:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx` ```text PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:51:8: warning: constructor does not initialize these fields: ccdb, hK0ShortMean, hK0ShortWidth, hLambdaMean, hLambdaWidth, hXiMean, hXiWidth, hOmegaMean, hOmegaWidth, mRunNumber, thisTrigg [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:52:15: warning: member 'ctauxi' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:53:15: warning: member 'ctauomega' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:55:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:57:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:57:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:178:44: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:189:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:189:28: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:189:118: warning: no header providing "o2::aod::track::signed1Pt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:197:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:197:37: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:197:50: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:198:86: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:208:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:216:23: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:236:3: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:245:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:259:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:283:54: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:295:22: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:316:5: warning: no header providing "TList" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:354:46: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:372:46: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:376:50: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:381:50: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:383:50: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:385:50: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:530:59: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:536:39: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:536:143: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:574:188: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:756:128: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:846:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:1059:28: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:1061:46: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:1062:49: warning: no header providing "o2::constants::physics::MassOmegaMinus" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx` ```text PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:27:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:30:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:32:1: warning: included header TMatrixD.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:40:12: warning: using decl 'cout' is unused [misc-unused-using-decls] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:41:12: warning: using decl 'endl' is unused [misc-unused-using-decls] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:47:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:54:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:55:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:59:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:127:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:130:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:146:84: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:156:40: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:170:35: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:185:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:216:43: warning: no header providing "o2::constants::physics::MassPiMinus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:217:43: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:218:67: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:218:158: warning: no header providing "o2::aod::TrackSelection" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:219:72: warning: no header providing "o2::aod::Mults" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:219:84: warning: no header providing "o2::aod::MultZeqs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:221:38: warning: no header providing "o2::aod::JCollisions" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:221:69: warning: no header providing "o2::aod::PVMults" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:221:83: warning: no header providing "o2::aod::CentFT0Ms" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:221:99: warning: no header providing "o2::aod::CentFV0As" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:408:60: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:411:59: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:475:62: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:485:69: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:491:70: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:495:68: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:499:67: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:509:168: warning: no header providing "o2::aod::JTracks" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:509:182: warning: no header providing "o2::aod::JTrackPIs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:590:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaJetpolarizationbuilder.cxx:606:128: warning: no header providing "o2::constants::physics::MassLambda0Bar" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx` ```text PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:31:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:32:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:33:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:34:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:35:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:36:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:37:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:39:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:40:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:42:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:45:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:47:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:49:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:50:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:51:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:52:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:53:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:54:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:55:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:64:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:65:12: warning: no header providing "std::cout" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:65:12: warning: using decl 'cout' is unused [misc-unused-using-decls] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:66:12: warning: using decl 'endl' is unused [misc-unused-using-decls] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:70:8: warning: constructor does not initialize these fields: Candidate [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:71:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:72:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:72:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:77:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:117:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:120:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:122:56: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:130:5: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:132:5: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:225:27: warning: no header providing "TMath::ACos" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:256:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:312:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx` ```text PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:35:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:46:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:50:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:52:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:53:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:54:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:55:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:56:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:57:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:58:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:59:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:76:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:82:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:88:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:98:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:126:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:132:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:134:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:137:43: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:142:51: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:163:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:171:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:201:17: warning: no header providing "o2::base::Propagator" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:248:32: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:248:44: warning: no header providing "TMath::Power" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:260:5: warning: uninitialized record type: 'pvec0' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:261:5: warning: uninitialized record type: 'pvec1' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:306:5: warning: no header providing "Long_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:327:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:403:30: warning: no header providing "kINT7" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx` ```text PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:24:1: warning: included header map is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:25:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:26:1: warning: included header utility is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:29:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:33:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:35:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:45:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:50:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:62:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:62:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:64:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:77:25: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:77:76: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:101:10: warning: constructor does not initialize these fields: xyz, posP, negP, momentum [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:155:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:156:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:291:14: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:294:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:308:181: warning: no header providing "o2::constants::physics::MassKaonNeutral" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:309:29: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:310:181: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:312:51: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx` ```text PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:30:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:31:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:32:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:33:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:34:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:36:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:38:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:40:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:41:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:42:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:43:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:47:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:49:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:50:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:51:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:52:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:53:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:54:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:55:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:65:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:72:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:75:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:75:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:78:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:92:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:92:42: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:107:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:110:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:112:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:118:60: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:175:10: warning: no header providing "std::iota" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:220:58: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:276:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:327:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromcfinder.cxx:412:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx` ```text PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:24:1: warning: included header LFStrangenessPIDTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:27:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:28:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:29:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:30:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:31:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:32:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:33:1: warning: included header MlResponse.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:38:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:43:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:45:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:46:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:47:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:48:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:49:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:50:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:51:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:62:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:63:12: warning: no header providing "std::cout" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:63:12: warning: using decl 'cout' is unused [misc-unused-using-decls] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:64:12: warning: using decl 'endl' is unused [misc-unused-using-decls] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:72:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:78:8: warning: no header providing "std::map" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:78:17: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:80:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:85:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:88:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:97:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:106:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:107:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:115:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:121:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:124:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:127:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:215:91: warning: no header providing "TMath::ACos" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:264:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/lambdakzerospawner.cxx` ```text PWGLF/TableProducer/Strangeness/lambdakzerospawner.cxx:20:1: warning: included header array is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerospawner.cxx:22:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerospawner.cxx:23:1: warning: included header utility is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerospawner.cxx:26:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerospawner.cxx:28:1: warning: included header AnalysisDataModel.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerospawner.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerospawner.cxx:30:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdakzerospawner.cxx:39:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx` ```text PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:19:1: warning: included header LFStrangenessPIDTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:21:1: warning: included header Index.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:24:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:27:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:28:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:34:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:38:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:40:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:42:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:43:1: warning: included header Vector2D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:44:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:45:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:47:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:56:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:56:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:59:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:61:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:66:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:68:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:69:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:79:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:116:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:117:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:118:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:121:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:122:46: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:242:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:273:105: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:273:164: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:273:223: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:273:282: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:273:380: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:273:497: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:342:26: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lambdaspincorrelation.cxx:351:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/lfinjets.cxx` ```text PWGLF/TableProducer/Strangeness/lfinjets.cxx:25:1: warning: included header JetDerivedDataUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:27:1: warning: included header Jet.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:28:1: warning: included header JetReducedData.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:32:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:35:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:37:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:44:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:48:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:50:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:51:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:52:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:53:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:59:1: warning: included header ClusterSequence.hh is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:63:1: warning: included header Selector.hh is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:64:1: warning: included header JetMedianBackgroundEstimator.hh is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:65:1: warning: included header Subtractor.hh is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:78:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:81:68: warning: no header providing "o2::aod::CentFT0Ms" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:88:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/lfinjets.cxx:90:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:94:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:99:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:102:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:102:54: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:113:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:113:21: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:159:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:160:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:161:58: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:177:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:198:134: warning: no header providing "std::endl" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:203:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:218:77: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:401:17: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:404:18: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:780:19: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:782:93: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:783:91: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:785:55: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:855:59: warning: no header providing "o2::constants::physics::MassOmegaMinus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:969:56: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:1001:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:1043:14: warning: no header providing "fastjet::JetDefinition" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:1043:44: warning: no header providing "fastjet::antikt_algorithm" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/lfinjets.cxx:1299:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx` ```text PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:20:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:21:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:22:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:23:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:31:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:33:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:39:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:41:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:42:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:43:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:44:1: warning: included header TH3F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:46:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:49:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:50:1: warning: included header array is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:55:1: warning: included header utility is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:64:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:68:49: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:71:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:72:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:104:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:117:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:119:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:121:70: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:161:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:199:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:267:42: warning: no header providing "std::optional" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:279:23: warning: no header providing "std::nullopt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:324:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:360:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:394:74: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:428:48: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:431:48: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:434:76: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/phiStrangeCorrelator.cxx:462:5: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/sigma0builder.cxx` ```text PWGLF/TableProducer/Strangeness/sigma0builder.cxx:30:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:31:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:32:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:33:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:34:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:38:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:42:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:44:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:45:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:46:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:47:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:48:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:49:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:51:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:72:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:73:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:79:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:117:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:117:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:119:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:131:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:269:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:269:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:293:73: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:302:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:320:56: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:324:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:324:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:353:94: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:365:59: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:373:63: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:469:73: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:470:81: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:482:75: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:506:54: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:703:17: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:718:29: warning: no header providing "TMath::Power" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:861:83: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:866:88: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:871:84: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:881:91: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:886:94: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:891:95: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:896:95: warning: no header providing "o2::aod::evsel::kIsVertexTRDmatched" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:901:91: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:906:97: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:911:100: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStrict" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:916:100: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeNarrow" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:921:91: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:926:94: warning: no header providing "o2::aod::evsel::kNoCollInRofStrict" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:1092:103: warning: no header providing "o2::constants::physics::MassGamma" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:1159:27: warning: no header providing "TMath::ACos" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:1197:71: warning: no header providing "o2::constants::physics::Pdg" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:1406:27: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:1413:127: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:1665:65: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:1720:77: warning: no header providing "o2::constants::physics::MassPhoton" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:1721:148: warning: no header providing "o2::constants::physics::MassPi0" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:1789:155: warning: no header providing "o2::constants::physics::MassSigma0" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:1835:5: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:1916:155: warning: no header providing "o2::constants::physics::MassK0Star892" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigma0builder.cxx:2271:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx` ```text PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:19:1: warning: included header PIDTOF.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:26:1: warning: included header PID.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:29:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:31:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:37:25: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:37:35: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:37:50: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:37:68: warning: no header providing "o2::aod::TracksCovIU" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:38:164: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:39:39: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:40:58: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:46:17: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:79:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:80:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:83:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:83:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:86:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:107:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:108:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:111:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:112:65: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:115:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:118:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:125:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:137:31: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:140:23: warning: no header providing "std::inner_product" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:141:23: warning: no header providing "std::inner_product" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:150:17: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:158:40: warning: no header providing "std::inner_product" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:167:100: warning: no header providing "o2::constants::physics::MassSigmaMinus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:168:91: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:171:37: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:171:64: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:239:42: warning: no header providing "o2::constants::physics::MassSigmaPlus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:258:29: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:343:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:346:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:347:23: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:347:59: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:347:81: warning: no header providing "o2::aod::collision::NumContrib" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:353:10: warning: no header providing "o2::soa::selfCombinations" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:394:129: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx:443:10: warning: no header providing "o2::soa::selfCombinations" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/sigmaminustask.cxx` ```text PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:25:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:26:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:30:1: warning: included header PID.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:37:25: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:37:35: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:37:50: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:37:68: warning: no header providing "o2::aod::TracksCovIU" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:40:39: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:41:58: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:43:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:46:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:50:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:50:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:55:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:62:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:77:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:77:50: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:80:41: warning: no header providing "o2::constants::math::Rad2Deg" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:84:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:93:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:95:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:106:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:131:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:170:41: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:170:46: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:171:50: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:173:12: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:203:22: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:220:28: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:223:23: warning: no header providing "std::inner_product" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:224:23: warning: no header providing "std::inner_product" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:233:17: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:240:40: warning: no header providing "std::inner_product" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:247:26: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:249:17: warning: no header providing "std::acos" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:254:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:295:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:297:92: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:297:133: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:297:189: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:346:24: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:445:7: warning: uninitialized record type: 'secVtx' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:446:7: warning: uninitialized record type: 'momDaug' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:494:34: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:513:10: warning: no header providing "std::unordered_map" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:513:24: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:513:38: warning: no header providing "std::pair" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:690:29: warning: no header providing "o2::math_utils::Point3D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:695:7: warning: uninitialized record type: 'dcaInfoMoth' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:697:7: warning: uninitialized record type: 'dcaInfoDaug' [cppcoreguidelines-pro-type-member-init] ``` #### `PWGLF/TableProducer/Strangeness/stCollIds.cxx` ```text PWGLF/TableProducer/Strangeness/stCollIds.cxx:28:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stCollIds.cxx:32:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stCollIds.cxx:39:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/stracents.cxx` ```text PWGLF/TableProducer/Strangeness/stracents.cxx:20:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:24:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:28:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:31:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:32:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:33:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:35:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:44:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, lCalibLoaded, hVtxZFV0A, hVtxZFT0A, hVtxZFT0C, hVtxZFDDA, hVtxZFDDC, hVtxZNTracks [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/stracents.cxx:45:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:48:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:50:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:51:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:62:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:62:54: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:68:5: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:141:3: warning: no header providing "TProfile" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:150:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:151:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:153:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:188:45: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:267:20: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/stracents.cxx:271:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/stracents.cxx:345:38: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/stracents.cxx:346:32: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/stracents.cxx:415:25: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:428:21: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:433:15: warning: variable 'v0m' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/stracents.cxx:486:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/stracents.cxx:579:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx` ```text PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:17:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:19:1: warning: included header TPCPIDResponse.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:26:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:31:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:32:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:34:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:41:1: warning: included header utility is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:52:21: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:62:19: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:70:23: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:70:33: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:95:22: warning: no header providing "std::log" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:106:26: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:111:20: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:127:8: warning: constructor does not initialize these fields: mompos, momneg, momposMC, momnegMC [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:137:3: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:160:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:167:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, mBz [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:168:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:174:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:179:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:180:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:182:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:188:83: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:189:75: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:190:77: warning: no header providing "o2::constants::physics::MassK0" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:228:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:228:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:230:3: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:283:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:305:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:305:62: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:308:16: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:310:16: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:322:5: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:373:55: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:373:92: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:397:68: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:409:29: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:432:13: warning: variable 'particlemass' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:436:48: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:460:25: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:463:98: warning: no header providing "o2::constants::physics::MassPiMinus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:466:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:523:7: warning: uninitialized record type: 'momV0' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:524:7: warning: uninitialized record type: 'momBach' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:525:7: warning: uninitialized record type: 'momCasc' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:541:118: warning: no header providing "o2::constants::physics::MassKaonCharged" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:543:50: warning: no header providing "o2::constants::physics::MassOmegaMinus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:578:44: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:601:22: warning: variable 'mother' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:602:22: warning: variable 'daughter' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:626:94: warning: no header providing "o2::constants::physics::Pdg" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:681:92: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:691:7: warning: uninitialized record type: 'secVtx' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:704:13: warning: variable 'pdg_particle' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:759:19: warning: no header providing "std::find_if" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:781:48: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:781:109: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:784:49: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:784:109: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:787:56: warning: no header providing "rand_r" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:787:98: warning: no header providing "RAND_MAX" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:839:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx` ```text PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:19:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:23:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:24:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:25:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:31:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:33:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:34:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:35:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:36:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:37:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:38:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:39:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:40:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:44:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:47:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:52:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:53:1: warning: included header map is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:55:1: warning: included header utility is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:61:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:66:80: warning: no header providing "o2::aod::CentFT0Ms" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:66:96: warning: no header providing "o2::aod::CentFT0As" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:66:112: warning: no header providing "o2::aod::CentFT0Cs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:66:128: warning: no header providing "o2::aod::CentFV0As" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:66:144: warning: no header providing "o2::aod::FT0Mults" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:67:41: warning: no header providing "o2::aod::UDCollisions" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:67:60: warning: no header providing "o2::aod::SGCollisions" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:67:79: warning: no header providing "o2::aod::UDCollisionsSels" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:67:102: warning: no header providing "o2::aod::UDZdcsReduced" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:67:122: warning: no header providing "o2::aod::UDCollsLabels" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:75:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:78:12: warning: no header providing "o2::framework::ProducesGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:81:5: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:151:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:151:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:159:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:164:3: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:166:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:166:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:171:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:171:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:185:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:218:79: warning: no header providing "o2::aod::udcollision::collisionId" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:220:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:236:82: warning: no header providing "TMath::Sign" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:239:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:389:10: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:390:18: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:390:112: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:391:116: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:398:38: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:398:79: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:400:41: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:400:110: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:415:41: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:440:13: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:654:77: warning: no header providing "o2::aod::FV0Mults" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:654:92: warning: no header providing "o2::aod::FDDMults" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:654:107: warning: no header providing "o2::aod::PVMults" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:654:121: warning: no header providing "o2::aod::ZDCMults" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:654:200: warning: no header providing "o2::aod::CentFT0CVariant1s" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:654:224: warning: no header providing "o2::aod::CentNGlobals" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:654:243: warning: no header providing "o2::aod::CentMFTs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:654:258: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:654:271: warning: no header providing "o2::aod::MultsExtra" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:654:288: warning: no header providing "o2::aod::MultsGlobal" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:664:694: warning: no header providing "o2::aod::MultsExtraMC" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:676:107: warning: no header providing "o2::aod::TrackletMults" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:676:156: warning: no header providing "o2::aod::CentRun2V0Ms" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:676:175: warning: no header providing "o2::aod::CentRun2V0As" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:676:194: warning: no header providing "o2::aod::CentRun2SPDTrks" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:676:216: warning: no header providing "o2::aod::CentRun2SPDClss" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:974:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:1018:10: warning: no header providing "std::fill" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:1078:53: warning: no header providing "o2::aod::SPCalibrationTables" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:1119:43: warning: no header providing "kNeutron" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx:1133:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx` ```text PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:35:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:37:1: warning: included header LFStrangenessPIDTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:43:1: warning: included header MlResponse.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:161:8: warning: constructor does not initialize these fields: ccdb, mRunNumber [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:208:25: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:218:12: warning: no header providing "o2::framework::ProducesGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:221:5: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:288:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:288:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:294:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:304:8: warning: no header providing "std::map" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:321:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:441:155: warning: no header providing "TMath::Exp" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:456:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:457:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:460:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:507:10: warning: constructor does not initialize these fields: xyz, posP, negP, momentum [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:518:10: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:526:10: warning: constructor does not initialize these fields: label, motherLabel, mcCollision, pdgCode, pdgCodeMother, pdgCodeV0, pdgCodePositive, pdgCodeNegative, pdgCodeBachelor, isPhysicalPrimary, xyz, lxyz, posP, negP, bachP, momentum, mcParticlePositive, mcParticleNegative, mcParticleBachelor [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:564:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:564:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:568:20: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:576:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:579:25: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:579:86: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:632:27: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:642:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:659:46: warning: no header providing "o2::framework::RunningWorkflowInfo" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:661:5: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:675:14: warning: no header providing "o2::framework::DeviceSpec" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:798:10: warning: no header providing "std::iota" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:810:22: warning: no header providing "std::pair" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:810:34: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:814:24: warning: no header providing "std::make_pair" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:820:12: warning: no header providing "std::sort" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:824:12: warning: no header providing "std::sort" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:829:50: warning: no header providing "std::make_pair" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:829:65: warning: no header providing "std::numeric_limits" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:835:29: warning: no header providing "std::make_pair" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:884:7: warning: uninitialized record type: 'v0DuplicateInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:906:41: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:941:29: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:988:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:1035:17: warning: no header providing "o2::base::Propagator" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:1437:22: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:1679:23: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:1705:37: warning: no header providing "o2::constants::physics::MassKaonNeutral" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:1713:37: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:1760:35: warning: no header providing "TMath::Cos" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:1774:11: warning: uninitialized record type: 'positivePositionIU' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:1775:11: warning: uninitialized record type: 'negativePositionIU' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:1776:22: warning: no header providing "o2::track::TrackPar" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:1915:20: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:2250:37: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:2272:37: warning: no header providing "o2::constants::physics::MassOmegaMinus" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:2709:7: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:2836:56: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:2838:41: warning: no header providing "TObject" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:2876:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:2943:16: warning: no header providing "std::runtime_error" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx` ```text PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:28:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:32:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:33:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:34:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:37:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:38:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:42:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:46:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:48:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:51:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:53:1: warning: included header PID.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:59:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:60:1: warning: included header map is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:62:1: warning: included header utility is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:82:8: warning: constructor does not initialize these fields: ccdb, nSigmaCalibLoaded, mRunNumber, d_bz, maxSnp, maxStep [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:84:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:91:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:97:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:99:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:99:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:102:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:116:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:161:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:171:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:178:18: warning: member 'bcShiftValuePS' of type 'const double' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:178:55: warning: no header providing "o2::constants::lhc::LHCBunchSpacingNS" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:187:3: warning: no header providing "TList" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:188:3: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:238:5: warning: uninitialized record type: 'mom' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:241:5: warning: uninitialized record type: 'startPoint' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:249:21: warning: no header providing "o2::math_utils::CircleXYf_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:250:11: warning: variable 'sna' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:250:16: warning: variable 'csa' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:267:35: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:267:47: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:286:37: warning: no header providing "TMath::ACos" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:301:25: warning: no header providing "TMath::Cos" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:301:55: warning: no header providing "TMath::Sin" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:335:52: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:337:71: warning: no header providing "TMath::Tan" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:352:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:425:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:436:64: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:449:74: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:454:85: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:592:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:593:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:594:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:595:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:596:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:597:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:599:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:600:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:601:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:602:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:603:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:604:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:624:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:625:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:626:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:627:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:628:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:629:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:630:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:631:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:632:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:633:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:635:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:636:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:637:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:638:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:639:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:640:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:641:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:642:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:643:27: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:644:28: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:805:11: warning: variable 'velocityPositivePr' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:805:31: warning: variable 'velocityPositivePi' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:805:51: warning: variable 'lengthPositive' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:824:33: warning: no header providing "o2::math_utils::Point3D" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:825:22: warning: no header providing "o2::track::TrackLTIntegral" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:828:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:832:61: warning: no header providing "o2::framework::pid::tof::MassToExpTime" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:884:11: warning: variable 'velocityNegativePr' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:884:31: warning: variable 'velocityNegativePi' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:884:51: warning: variable 'lengthNegative' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:1027:7: warning: uninitialized record type: 'cascCloseToPVPosition' [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:1030:13: warning: variable 'sna' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:1030:18: warning: variable 'csa' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:1037:59: warning: no header providing "TMath::ASin" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:1081:13: warning: variable 'velocityPositivePr' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:1081:33: warning: variable 'velocityPositivePi' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:1081:53: warning: variable 'lengthPositive' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:1172:13: warning: variable 'velocityNegativePr' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:1172:33: warning: variable 'velocityNegativePi' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:1172:53: warning: variable 'lengthNegative' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:1264:13: warning: variable 'velocityBachelorKa' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:1264:33: warning: variable 'velocityBachelorPi' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:1264:53: warning: variable 'lengthBachelor' is not initialized [cppcoreguidelines-init-variables] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:1402:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:1608:12: warning: no header providing "std::iota" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:1805:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx` ```text PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:42:53: warning: no header providing "o2::framework::VariantType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:48:24: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:48:34: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:48:47: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:49:47: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:50:37: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:52:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:55:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:57:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:59:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:76:43: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:77:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:77:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:147:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:176:62: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:184:69: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:188:70: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:192:68: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:196:69: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:204:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:204:24: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:208:25: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:278:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:280:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:280:75: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:281:17: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:281:58: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:283:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:285:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:287:67: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:288:37: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0qaanalysis.cxx:459:26: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] ``` #### `PWGLF/TableProducer/Strangeness/v0selector.cxx` ```text PWGLF/TableProducer/Strangeness/v0selector.cxx:24:1: warning: included header ASoA.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0selector.cxx:27:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0selector.cxx:37:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0selector.cxx:39:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0selector.cxx:97:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0selector.cxx:260:36: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/TableProducer/Strangeness/v0selector.cxx:299:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx` ```text PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:22:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:26:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:31:1: warning: included header RuntimeError.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:34:1: warning: included header GlobalTrackID.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:36:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:39:1: warning: included header chrono is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:51:1: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:74:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:80:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:119:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:123:8: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:160:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:173:31: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:173:36: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:426:33: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:480:43: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:504:31: warning: no header providing "std::decay_t" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:507:55: warning: no header providing "o2::aod::evsel::kIsBBT0A" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:508:55: warning: no header providing "o2::aod::evsel::kIsBBT0C" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:534:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:547:70: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:657:69: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:661:73: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:661:127: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:661:186: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/dndeta-mft-pp.cxx:951:43: warning: no header providing "o2::aod::mcparticle::enums::PhysicalPrimary" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx` ```text PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:18:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:28:1: warning: included header McCollisionExtra.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:36:1: warning: included header AlignParam.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:37:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:46:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:49:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:53:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:65:1: warning: included header utility is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:194:6: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:197:28: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:214:28: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:218:8: warning: constructor does not initialize these fields: pdg, magField, ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:220:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:221:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:222:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:225:3: warning: no header providing "TProfile2D" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:277:40: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:394:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:447:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:487:75: warning: no header providing "std::back_inserter" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:498:43: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:498:70: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:498:97: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:524:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:561:82: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:603:63: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:604:106: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:616:121: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:623:95: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:668:39: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:790:28: warning: no header providing "fmt::format" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:1371:77: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:1372:74: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:1374:73: warning: no header providing "o2::constants::physics::MassGamma" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:1395:26: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:1655:48: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:1666:85: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:1672:86: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:1678:86: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:1684:87: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:1690:84: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:1696:89: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:1893:12: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:2096:11: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:2229:11: warning: variable 'flat' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:2230:11: warning: variable 'mult' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:2504:55: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx` ```text PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:19:1: warning: included header Index.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:20:1: warning: included header bestCollisionTable.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:24:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:31:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:33:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:39:1: warning: included header GlobalTrackID.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:40:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:131:1: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:151:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:153:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:153:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:154:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:178:60: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:205:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:220:42: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:223:29: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:223:34: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:239:52: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:240:50: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:241:48: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:267:32: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:272:32: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:277:62: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:312:56: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:503:93: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:503:117: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:505:124: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:623:15: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:1037:55: warning: no header providing "o2::aod::McCollsExtra" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx` ```text PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:18:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:19:1: warning: included header Index.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:20:1: warning: included header bestCollisionTable.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:24:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:30:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:38:1: warning: included header GlobalTrackID.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:39:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:57:77: warning: no header providing "o2::aod::McCollsExtra" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:118:1: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:132:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:134:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:134:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:135:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:147:60: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:160:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:166:42: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:170:58: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:175:52: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:209:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:210:31: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:210:36: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:216:70: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:329:73: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:329:97: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:331:104: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/ptmultCorr.cxx:479:15: warning: no header providing "std::find" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx` ```text PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:18:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:19:1: warning: included header Index.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:20:1: warning: included header bestCollisionTable.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:24:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:25:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:30:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:38:1: warning: included header GlobalTrackID.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:39:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:41:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:74:1: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:80:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:82:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:82:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:83:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:106:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:115:42: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:118:29: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:118:34: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:129:50: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:132:60: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:281:73: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:281:97: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:283:104: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx` ```text PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:19:1: warning: included header TriggerAliases.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:20:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:27:1: warning: included header ZDCConstants.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:28:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:34:1: warning: included header GlobalTrackID.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:35:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:47:1: warning: included header numeric is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:49:1: warning: included header string_view is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:50:1: warning: included header typeinfo is not used directly [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:72:6: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:72:17: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:72:28: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:73:28: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:77:28: warning: no header providing "TProfile2D" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:89:28: warning: no header providing "TProfile" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:101:8: warning: constructor does not initialize these fields: ccdb, currentRunNumber, pdg [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:109:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:172:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:172:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:209:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:210:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:213:5: warning: no header providing "TH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:219:5: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:226:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:243:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:252:65: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:259:75: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:284:63: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:288:74: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:290:90: warning: no header providing "o2::framework::kTProfile2D" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:706:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:949:12: warning: variable 'p1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:949:16: warning: variable 'p2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:949:20: warning: variable 'p3' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:949:24: warning: variable 'p4' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:949:28: warning: variable 'w1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:949:32: warning: variable 'w2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:949:36: warning: variable 'w3' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:949:40: warning: variable 'w4' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1140:16: warning: variable 'p1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1140:20: warning: variable 'p2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1140:24: warning: variable 'p3' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1140:28: warning: variable 'p4' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1140:32: warning: variable 'w1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1140:36: warning: variable 'w2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1140:40: warning: variable 'w3' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1140:44: warning: variable 'w4' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1230:16: warning: variable 'p1MC' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1230:22: warning: variable 'p2MC' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1230:28: warning: variable 'p3MC' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1230:34: warning: variable 'p4MC' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1230:40: warning: variable 'w1MC' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1230:46: warning: variable 'w2MC' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1230:52: warning: variable 'w3MC' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1230:58: warning: variable 'w4MC' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1478:16: warning: variable 'p1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1478:20: warning: variable 'p2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1478:24: warning: variable 'p3' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1478:28: warning: variable 'p4' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1478:32: warning: variable 'w1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1478:36: warning: variable 'w2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1478:40: warning: variable 'w3' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1478:44: warning: variable 'w4' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1621:16: warning: variable 'p1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1621:20: warning: variable 'p2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1621:24: warning: variable 'p3' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1621:28: warning: variable 'p4' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1621:32: warning: variable 'w1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1621:36: warning: variable 'w2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1621:40: warning: variable 'w3' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1621:44: warning: variable 'w4' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1764:16: warning: variable 'p1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1764:20: warning: variable 'p2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1764:24: warning: variable 'p3' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1764:28: warning: variable 'p4' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1764:32: warning: variable 'w1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1764:36: warning: variable 'w2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1764:40: warning: variable 'w3' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:1764:44: warning: variable 'w4' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGLF/Tasks/Nuspex/AntiNucleiTask.cxx` ```text PWGLF/Tasks/Nuspex/AntiNucleiTask.cxx:16:1: warning: included header TPCPIDResponse.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntiNucleiTask.cxx:17:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntiNucleiTask.cxx:18:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntiNucleiTask.cxx:30:1: warning: included header TParameter.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntiNucleiTask.cxx:53:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntiNucleiTask.cxx:56:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntiNucleiTask.cxx:64:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntiNucleiTask.cxx:66:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntiNucleiTask.cxx:68:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntiNucleiTask.cxx:78:38: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntiNucleiTask.cxx:86:42: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntiNucleiTask.cxx:87:48: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntiNucleiTask.cxx:168:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx` ```text PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:15:1: warning: included header PIDTOF.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:16:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:24:1: warning: included header CcdbApi.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:28:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:31:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:33:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:35:1: warning: included header DCA.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:37:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:40:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:42:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:43:1: warning: included header TRandom.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:55:28: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:55:39: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:57:39: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:59:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:62:50: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:66:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:86:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:87:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:94:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:102:73: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:115:69: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:117:69: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:127:52: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:331:15: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:337:14: warning: no header providing "o2::track::TrackParametrizationWithError" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:376:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:376:9: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:418:24: warning: no header providing "sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:605:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx` ```text PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:28:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:38:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:45:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:59:8: warning: constructor does not initialize these fields: ccdb, pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:60:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:64:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:69:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:71:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:89:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:118:23: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:154:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:155:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:237:34: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:240:62: warning: no header providing "o2::constants::physics::Pdg" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:245:66: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:246:68: warning: no header providing "o2::constants::physics::MassDeuteron" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:247:66: warning: no header providing "o2::constants::physics::MassTriton" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:248:66: warning: no header providing "o2::constants::physics::MassHelium3" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:249:65: warning: no header providing "o2::constants::physics::MassAlpha" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:288:38: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:288:149: warning: no header providing "std::cosh" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:304:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:316:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:339:81: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:415:20: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:630:18: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:2427:12: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:2481:7: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:2499:7: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:2511:7: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:2600:7: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:2646:42: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:4158:13: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:4184:13: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:4217:15: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:4369:15: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:4518:9: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:4543:9: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:4598:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:4618:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:4732:13: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:4888:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:6075:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx` ```text PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:15:1: warning: included header ReducedInfoTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:16:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:17:1: warning: included header mcCentrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:18:1: warning: included header spectraTOF.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:19:1: warning: included header inelGt.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:21:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:22:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:23:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:26:1: warning: included header McCollisionExtra.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:27:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:30:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:34:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:35:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:37:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:39:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:40:1: warning: included header TF1.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:41:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:43:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:56:56: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:58:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:58:13: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:62:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:69:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:77:70: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:107:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:172:72: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:174:73: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:176:74: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:178:71: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:180:73: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:349:15: warning: Value stored to 'pdgbin' is never read [clang-analyzer-deadcode.DeadStores] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:469:15: warning: Value stored to 'pdgbin' is never read [clang-analyzer-deadcode.DeadStores] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:555:13: warning: Value stored to 'pdgbin' is never read [clang-analyzer-deadcode.DeadStores] PWGLF/Tasks/Nuspex/NucleiEfficiencyTask.cxx:568:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/NucleiHistTask.cxx` ```text PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:15:1: warning: included header ReducedInfoTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:17:1: warning: included header mcCentrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:18:1: warning: included header spectraTOF.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:19:1: warning: included header inelGt.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:21:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:22:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:23:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:26:1: warning: included header McCollisionExtra.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:27:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:31:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:35:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:36:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:38:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:40:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:43:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:44:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:60:48: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:73:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:73:13: warning: no header providing "TH1I" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:84:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:135:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:144:64: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:487:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:565:72: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:567:73: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:569:74: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:571:71: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:573:73: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:678:13: warning: variable 'momentum' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:685:105: warning: no header providing "o2::constants::physics::MassPiPlus" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:693:105: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:701:105: warning: no header providing "o2::constants::physics::MassDeuteron" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:709:105: warning: no header providing "o2::constants::physics::MassTriton" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:717:111: warning: no header providing "o2::constants::physics::MassHelium3" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:725:111: warning: no header providing "o2::constants::physics::MassAlpha" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:835:13: warning: no header providing "Float_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:901:13: warning: variable 'momentum' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:1088:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:1270:108: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/QAHistTask.cxx` ```text PWGLF/Tasks/Nuspex/QAHistTask.cxx:15:1: warning: included header ReducedInfoTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:23:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:28:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:30:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:31:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:34:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:47:52: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:52:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:52:13: warning: no header providing "TH1I" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:54:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:85:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:97:59: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:134:43: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:228:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:282:72: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:284:73: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:286:74: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:288:71: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:290:73: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:323:13: warning: variable 'momentum' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Nuspex/QAHistTask.cxx:328:96: warning: no header providing "o2::constants::physics::MassPiPlus" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:333:96: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:338:96: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:343:96: warning: no header providing "o2::constants::physics::MassDeuteron" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:348:96: warning: no header providing "o2::constants::physics::MassTriton" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:353:102: warning: no header providing "o2::constants::physics::MassHelium3" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:358:102: warning: no header providing "o2::constants::physics::MassAlpha" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:441:9: warning: no header providing "Float_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:604:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QAHistTask.cxx:735:11: warning: Value stored to 'pdgbin' is never read [clang-analyzer-deadcode.DeadStores] ``` #### `PWGLF/Tasks/Nuspex/QCspectraTPC.cxx` ```text PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:12:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:14:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:17:1: warning: included header McCollisionExtra.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:18:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:23:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:26:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:27:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:29:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:31:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:38:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:38:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:42:15: warning: no header providing "sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:43:10: warning: no header providing "asinh" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:43:26: warning: no header providing "sinh" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:47:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:56:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:66:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:76:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:77:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:79:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:92:57: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:93:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:204:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:204:45: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:205:42: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:205:55: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:212:9: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:227:11: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:251:55: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:253:7: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:265:32: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:265:41: warning: no header providing "std::atan" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:331:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:333:26: warning: no header providing "o2::aod::McCollision" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:333:63: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:359:64: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:361:52: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/QCspectraTPC.cxx:364:26: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx` ```text PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:20:1: warning: included header PIDTOF.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:26:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:33:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:55:3: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:65:8: warning: constructor does not initialize these fields: ccdb, mRunNumber [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:67:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:132:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:159:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:159:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:166:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:175:60: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:317:144: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:393:49: warning: no header providing "o2::aod::track::Run2Track" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:394:45: warning: no header providing "o2::aod::track::TPCrefit" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:395:45: warning: no header providing "o2::aod::track::ITSrefit" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:472:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:623:49: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:635:7: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:699:9: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:889:106: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:1089:114: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:1104:14: warning: no header providing "fastjet::JetDefinition" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:1104:44: warning: no header providing "fastjet::antikt_algorithm" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:1458:32: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:1468:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/antinucleiInJets.cxx` ```text PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:19:1: warning: included header JetDerivedDataUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:21:1: warning: included header Jet.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:22:1: warning: included header JetReducedData.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:24:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:27:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:29:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:39:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:42:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:45:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:47:1: warning: included header DCA.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:49:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:51:1: warning: included header TGrid.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:53:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:54:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:56:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:63:1: warning: included header ClusterSequence.hh is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:67:1: warning: included header Selector.hh is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:68:1: warning: included header JetMedianBackgroundEstimator.hh is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:69:1: warning: included header Subtractor.hh is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:74:1: warning: included header memory is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:75:1: warning: included header random is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:90:73: warning: no header providing "o2::aod::CentFT0Ms" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:96:35: warning: no header providing "ROOT::Math::PxPyPzEVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:120:20: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:131:8: warning: constructor does not initialize these fields: primaryAntiprotons, primaryAntiLambda, primaryAntiSigma, primaryAntiXi, primaryAntiOmega, antiprotonsInsideJets, antiprotonsPerpCone, ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:134:54: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:144:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:215:3: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:224:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:231:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:248:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:271:38: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:281:72: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:281:131: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:283:111: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:527:13: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:690:47: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:691:47: warning: no header providing "o2::constants::physics::MassNeutron" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:1094:72: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:1099:68: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:1104:70: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:1109:75: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:1114:78: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:1119:79: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:1132:88: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:1148:14: warning: no header providing "fastjet::JetDefinition" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:1148:44: warning: no header providing "fastjet::antikt_algorithm" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:1258:137: warning: no header providing "o2::constants::physics::MassHelium3" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:1377:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:1612:9: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:1618:40: warning: no header providing "o2::constants::physics::Pdg" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:2643:9: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/antinucleiInJets.cxx:3386:47: warning: no header providing "o2::constants::physics::MassDeuteron" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/chargedParticles.cxx` ```text PWGLF/Tasks/Nuspex/chargedParticles.cxx:20:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:28:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:43:8: warning: constructor does not initialize these fields: pdg, trackSelFlag [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/chargedParticles.cxx:47:3: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:59:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:61:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:88:3: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:106:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:126:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:126:45: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:127:41: warning: no header providing "o2::aod::FullTracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:129:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:131:37: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:132:33: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:132:60: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:133:93: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:134:42: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:135:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:135:53: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:163:9: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:168:39: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:169:41: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:225:89: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:390:47: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:391:47: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:392:47: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:401:75: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:520:22: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedParticles.cxx:522:47: warning: no header providing "std::count" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx` ```text PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:18:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:19:1: warning: included header Index.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:20:1: warning: included header bestCollisionTable.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:24:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:30:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:38:1: warning: included header GlobalTrackID.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:39:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:57:77: warning: no header providing "o2::aod::McCollsExtra" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:118:1: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:131:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:133:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:133:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:134:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:146:60: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:159:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:165:42: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:169:58: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:174:52: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:208:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:209:31: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:209:36: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:215:70: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:328:73: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:328:97: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:330:104: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/chargedparticleRaa.cxx:478:15: warning: no header providing "std::find" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx` ```text PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:21:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:22:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:25:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:33:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:39:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:56:17: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:56:28: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:59:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:65:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:141:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:177:16: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:183:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:199:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:201:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:201:34: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:206:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:220:84: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:229:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:268:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:274:26: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:286:41: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:344:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:346:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:351:89: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:352:89: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:398:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:400:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:403:57: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:405:57: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:413:61: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:415:61: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:418:60: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:420:60: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:648:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:666:102: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:727:102: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:845:33: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:850:78: warning: no header providing "o2::constants::physics::MassGamma" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:867:24: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:895:34: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:900:33: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:901:16: warning: no header providing "std::fmod" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:1215:50: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx:1220:50: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/deutRtTask.cxx` ```text PWGLF/Tasks/Nuspex/deutRtTask.cxx:12:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:14:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:15:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:16:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:18:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:23:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:27:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:36:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:36:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Nuspex/deutRtTask.cxx:41:15: warning: no header providing "sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:42:10: warning: no header providing "asinh" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:42:26: warning: no header providing "sinh" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:47:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:58:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:58:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:62:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:63:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:65:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:71:57: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:72:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:76:54: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:89:48: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:104:57: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:146:27: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:164:22: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:182:25: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:186:35: warning: no header providing "TMath::Log" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:226:58: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:255:21: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:379:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:379:45: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:380:42: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:380:55: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:388:9: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/deutRtTask.cxx:426:42: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx` ```text PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:20:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:27:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:31:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:33:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:35:1: warning: included header TGrid.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:36:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:40:1: warning: included header TParameter.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:41:1: warning: included header TVector2.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:42:1: warning: included header TVector3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:56:8: warning: constructor does not initialize these fields: nBinspT, hEffpTEta_proton, hEffpTEta_antiproton, hEffpTEta_deuteron, hEffpTEta_antideuteron, ccdb, pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:62:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:82:16: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:113:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:114:83: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:132:12: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:158:31: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:185:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:190:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:195:43: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:195:70: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:195:97: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:199:27: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:207:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:209:55: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:216:43: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:234:60: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:349:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:701:43: warning: no header providing "o2::constants::physics::MassDeuteron" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:702:43: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:725:15: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:1051:33: warning: no header providing "std::floor" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:1052:31: warning: no header providing "std::floor" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:1360:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:1811:9: warning: no header providing "TParticlePDG" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx` ```text PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:14:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:19:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:25:17: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:44:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:51:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:53:65: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:53:102: warning: no header providing "o2::constants::physics::MassNeutron" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:53:144: warning: no header providing "o2::constants::physics::MassSigmaPlus" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:55:48: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:55:98: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:59:175: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:69:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:75:14: warning: no header providing "std::cout" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:75:84: warning: no header providing "std::endl" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:79:40: warning: no header providing "ROOT::Math::LorentzVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:79:66: warning: no header providing "ROOT::Math::PtEtaPhiM4D" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:79:143: warning: no header providing "o2::constants::physics::MassHelium3" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:88:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:107:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:121:175: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:133:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/helium_flow.cxx` ```text PWGLF/Tasks/Nuspex/helium_flow.cxx:15:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/helium_flow.cxx:16:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/helium_flow.cxx:17:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/helium_flow.cxx:24:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/helium_flow.cxx:27:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/helium_flow.cxx:29:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/helium_flow.cxx:31:1: warning: included header DCA.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/helium_flow.cxx:32:1: warning: included header PID.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/helium_flow.cxx:33:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/helium_flow.cxx:35:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/helium_flow.cxx:36:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/helium_flow.cxx:37:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/helium_flow.cxx:38:1: warning: included header TRandom.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/helium_flow.cxx:39:1: warning: included header TVector2.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/helium_flow.cxx:40:1: warning: included header TVector3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/helium_flow.cxx:49:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Nuspex/helium_flow.cxx:63:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/helium_flow.cxx:84:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/helium_flow.cxx:106:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/helium_flow.cxx:109:73: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/helium_flow.cxx:228:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/hyhe4analysis.cxx` ```text PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:25:1: warning: included header map is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:26:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:27:1: warning: included header utility is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:30:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:33:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:34:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:35:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:36:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:37:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:38:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:39:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:40:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:41:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:42:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:43:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:44:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:45:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:46:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:53:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:61:70: warning: no header providing "o2::aod::pidTPCFullEl" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:61:89: warning: no header providing "o2::aod::pidTPCFullPi" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:61:108: warning: no header providing "o2::aod::pidTPCFullPr" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:61:127: warning: no header providing "o2::aod::pidTPCFullHe" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:68:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:71:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:71:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:73:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:75:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:84:40: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:110:52: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:116:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx` ```text PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:24:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:25:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:26:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:27:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:29:1: warning: included header PIDResponseTPC.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:35:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:37:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:43:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:44:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:45:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:46:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:47:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:48:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:49:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:65:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz, stats, evselstats [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:66:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:68:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:72:53: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:102:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:127:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:131:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:131:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:203:10: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:223:5: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:230:33: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:246:28: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:265:24: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:321:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:329:5: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:336:33: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:351:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/identifiedraa.cxx` ```text PWGLF/Tasks/Nuspex/identifiedraa.cxx:42:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:44:47: warning: no header providing "o2::framework::VariantType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:45:8: warning: no header providing "std::swap" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:53:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:53:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:54:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:70:25: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:72:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:84:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:90:27: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/identifiedraa.cxx:90:55: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:97:28: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/identifiedraa.cxx:98:28: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/identifiedraa.cxx:99:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/identifiedraa.cxx:100:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/identifiedraa.cxx:101:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/identifiedraa.cxx:102:25: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/identifiedraa.cxx:102:88: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:103:28: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/identifiedraa.cxx:104:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/identifiedraa.cxx:105:25: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/identifiedraa.cxx:106:28: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/identifiedraa.cxx:107:27: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/identifiedraa.cxx:108:32: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/identifiedraa.cxx:109:31: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/identifiedraa.cxx:110:32: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/identifiedraa.cxx:111:31: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/identifiedraa.cxx:115:18: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:119:65: warning: no header providing "o2::aod::McParticles_000" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:122:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:131:13: warning: variable 'mass' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Nuspex/identifiedraa.cxx:205:23: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:205:33: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:205:46: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:206:49: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:220:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:281:35: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:289:30: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/identifiedraa.cxx:315:29: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/mcspectraefficiency.cxx` ```text PWGLF/Tasks/Nuspex/mcspectraefficiency.cxx:15:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/mcspectraefficiency.cxx:19:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/mcspectraefficiency.cxx:20:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/mcspectraefficiency.cxx:26:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/mcspectraefficiency.cxx:29:20: warning: no header providing "o2::framework::VariantType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/mcspectraefficiency.cxx:32:8: warning: no header providing "std::swap" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/mcspectraefficiency.cxx:41:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/mcspectraefficiency.cxx:41:13: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/mcspectraefficiency.cxx:52:13: warning: no header providing "TH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/mcspectraefficiency.cxx:52:71: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/mcspectraefficiency.cxx:66:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Nuspex/mcspectraefficiency.cxx:66:11: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/mcspectraefficiency.cxx:70:26: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/mcspectraefficiency.cxx:75:18: warning: no header providing "sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/mcspectraefficiency.cxx:106:91: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/neutronSkin.cxx` ```text PWGLF/Tasks/Nuspex/neutronSkin.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:26:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:31:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:56:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/neutronSkin.cxx:60:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:62:25: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:110:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:111:58: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:115:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:117:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:180:36: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:180:46: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:181:42: warning: no header providing "o2::aod::FullTracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:181:59: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:181:144: warning: no header providing "o2::aod::TracksCov" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:186:42: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:186:52: warning: no header providing "o2::aod::Run2BCInfos" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:186:70: warning: no header providing "o2::aod::Timestamps" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:189:69: warning: no header providing "o2::aod::McCollisionLabel" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:190:61: warning: no header providing "o2::aod::McTrackLabel" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:195:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:195:31: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:195:52: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:196:39: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:198:39: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:202:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:202:56: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:208:79: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:213:19: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:218:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:250:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:335:17: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:531:73: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:533:11: warning: variable 'centrality' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Nuspex/neutronSkin.cxx:550:11: warning: variable 'centrality' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Nuspex/neutronSkin.cxx:570:11: warning: variable 'centrality' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Nuspex/neutronSkin.cxx:585:23: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:586:23: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:588:23: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/neutronSkin.cxx:845:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/nucleiEbye.cxx` ```text PWGLF/Tasks/Nuspex/nucleiEbye.cxx:13:1: warning: included header utility is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:15:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:22:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:26:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:35:59: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:35:95: warning: no header providing "o2::constants::physics::MassDeuteron" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:36:64: warning: no header providing "o2::constants::physics::kDeuteron" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:37:17: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:61:17: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:63:6: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:64:28: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:72:8: warning: constructor does not initialize these fields: pt, eta, mass, cpa, dcav0daugh, dcav0pv [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:79:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:84:8: warning: constructor does not initialize these fields: pt, eta [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:90:8: warning: constructor does not initialize these fields: nSubsamples, ptMin, ptTof, ptMax, nSigmaTpcCutLow, nSigmaTpcCutUp, tofMassMax [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:98:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:101:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:109:83: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:125:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:168:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:168:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:213:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:216:5: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:216:62: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:216:89: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:216:116: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:219:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:219:62: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:341:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiEbye.cxx:689:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx` ```text PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:15:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:17:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:19:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:23:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:26:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:29:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:31:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:35:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:37:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:38:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:39:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:40:1: warning: included header TRandom.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:41:1: warning: included header TVector2.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:42:1: warning: included header TVector3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:56:53: warning: no header providing "o2::constants::physics::kDeuteron" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:57:47: warning: no header providing "o2::constants::physics::kHelium3" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:58:56: warning: no header providing "o2::constants::physics::kHyperTriton" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:59:57: warning: no header providing "o2::constants::physics::kHyperHelium4" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:62:8: warning: constructor does not initialize these fields: mCcdb [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:71:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:76:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:91:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:97:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:103:14: warning: no header providing "o2::track::TrackParametrizationWithError" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:104:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:106:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:114:60: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:157:37: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:170:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:210:29: warning: no header providing "o2::math_utils::Point3D" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:226:9: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx:273:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/nuclei_in_toward_transv_regions.cxx` ```text PWGLF/Tasks/Nuspex/nuclei_in_toward_transv_regions.cxx:15:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nuclei_in_toward_transv_regions.cxx:16:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nuclei_in_toward_transv_regions.cxx:17:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nuclei_in_toward_transv_regions.cxx:24:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nuclei_in_toward_transv_regions.cxx:27:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nuclei_in_toward_transv_regions.cxx:29:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nuclei_in_toward_transv_regions.cxx:31:1: warning: included header DCA.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nuclei_in_toward_transv_regions.cxx:32:1: warning: included header PID.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nuclei_in_toward_transv_regions.cxx:33:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nuclei_in_toward_transv_regions.cxx:35:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nuclei_in_toward_transv_regions.cxx:38:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nuclei_in_toward_transv_regions.cxx:39:1: warning: included header TRandom.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nuclei_in_toward_transv_regions.cxx:50:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Nuspex/nuclei_in_toward_transv_regions.cxx:65:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nuclei_in_toward_transv_regions.cxx:78:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nuclei_in_toward_transv_regions.cxx:100:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nuclei_in_toward_transv_regions.cxx:103:75: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nuclei_in_toward_transv_regions.cxx:233:9: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nuclei_in_toward_transv_regions.cxx:389:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx` ```text PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:19:1: warning: included header TPCPIDResponse.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:20:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:23:1: warning: included header CollisionAssociationTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:33:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:35:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:40:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:42:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:45:1: warning: included header limits is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:60:83: warning: no header providing "o2::constants::physics::kDeuteron" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:60:118: warning: no header providing "o2::constants::physics::kTriton" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:60:151: warning: no header providing "o2::constants::physics::kHelium3" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:60:185: warning: no header providing "o2::constants::physics::kAlpha" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:61:73: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:61:114: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:61:150: warning: no header providing "o2::constants::physics::MassDeuteron" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:61:188: warning: no header providing "o2::constants::physics::MassTriton" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:61:224: warning: no header providing "o2::constants::physics::MassHelium3" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:61:261: warning: no header providing "o2::constants::physics::MassAlpha" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:103:3: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:108:77: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:119:18: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:119:29: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:123:8: warning: constructor does not initialize these fields: ccdb, collHasCandidate, collPassedEvSel, mRunNumber, occupancy, dBz [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:127:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:127:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:131:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:195:14: warning: no header providing "o2::track::TrackParametrizationWithError" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:197:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:218:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:237:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:251:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:257:18: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:257:46: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:271:44: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:283:40: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:365:74: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:367:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:368:75: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:372:76: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:375:73: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:379:75: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:404:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:407:14: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:408:17: warning: variable 'ptMomn' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:433:46: warning: no header providing "std::exp" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:457:33: warning: no header providing "std::cosh" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:481:47: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:553:51: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:596:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:723:28: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:741:24: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:751:11: warning: Value stored to 'decayType' is never read [clang-analyzer-deadcode.DeadStores] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:846:21: warning: variable 'ptReco' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:1111:21: warning: variable 'ptReco' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:1184:60: warning: no header providing "TMCProcess" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:1301:20: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:1360:11: warning: variable 'ptMomn' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:1396:11: warning: variable 'ptMomn' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:1481:41: warning: no header providing "ROOT::Math::LorentzVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:1481:67: warning: no header providing "ROOT::Math::PtEtaPhiM4D" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/nucleitpcpbpb.cxx:1482:12: warning: variable 'momn' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGLF/Tasks/Nuspex/pccQa.cxx` ```text PWGLF/Tasks/Nuspex/pccQa.cxx:18:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/pccQa.cxx:19:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/pccQa.cxx:36:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/pccQa.cxx:38:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/pccQa.cxx:42:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/pccQa.cxx:47:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/pccQa.cxx:47:45: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/pccQa.cxx:48:41: warning: no header providing "o2::aod::FullTracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/pccQa.cxx:50:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/pccQa.cxx:52:37: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/pccQa.cxx:53:33: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/pccQa.cxx:53:60: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/pccQa.cxx:54:93: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/pccQa.cxx:55:42: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/pccQa.cxx:56:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/pccQa.cxx:56:53: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/pccQa.cxx:68:34: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/pccQa.cxx:69:9: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/pccQa.cxx:73:31: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/piKpRAA.cxx` ```text PWGLF/Tasks/Nuspex/piKpRAA.cxx:21:1: warning: included header TriggerAliases.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:25:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:34:1: warning: included header ZDCConstants.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:35:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:37:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:38:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:44:1: warning: included header GlobalTrackID.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:45:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:59:1: warning: included header numeric is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:61:1: warning: included header string_view is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:62:1: warning: included header typeinfo is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:83:6: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:83:17: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:83:28: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:88:28: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:96:28: warning: no header providing "TProfile" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:104:8: warning: constructor does not initialize these fields: ccdb, currentRunNumberNchSel, currentRunNumberPhiSel, pdg [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/piKpRAA.cxx:136:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:136:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:138:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:225:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:225:50: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:298:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:299:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:302:5: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:333:49: warning: no header providing "o2::aod::track::TrackTypeEnum" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:351:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:361:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:372:46: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:375:72: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:378:66: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:379:104: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:382:31: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:428:114: warning: no header providing "o2::framework::kTProfile2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:935:14: warning: variable 'alpha' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Nuspex/piKpRAA.cxx:935:21: warning: variable 'qT' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Nuspex/piKpRAA.cxx:948:78: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:949:75: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:951:74: warning: no header providing "o2::constants::physics::MassGamma" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/piKpRAA.cxx:1131:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx` ```text PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:17:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:27:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:28:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:30:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:40:1: warning: included header PID.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:42:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:43:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:44:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:47:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:53:1: warning: included header memory is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:63:34: warning: no header providing "o2::math_utils::Bracket" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:78:8: warning: constructor does not initialize these fields: mothTrackID, daugTrackID, collisionID, mothSign [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:94:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, mBz, mBBparamsDaug [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:96:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:97:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:99:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:113:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:116:41: warning: no header providing "o2::constants::math::Rad2Deg" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:120:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:139:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:216:10: warning: variable 'isDaug' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:217:10: warning: variable 'isMoth' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:255:7: warning: uninitialized record type: 'dcaInfoMoth' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:262:7: warning: uninitialized record type: 'dcaInfoDaug' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:302:33: warning: no header providing "std::acos" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:311:35: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:352:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:355:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:358:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:358:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:394:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:410:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:496:40: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:499:17: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:509:28: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:525:17: warning: no header providing "std::atan" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:532:49: warning: no header providing "o2::constants::physics::MassKaonCharged" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:540:49: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:549:110: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:552:50: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:552:114: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:572:26: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:598:30: warning: conversion of 'TrackFlagsRun2Enum' into 'bool' will always return 'true', enum doesn't have a zero-value enumerator [bugprone-non-zero-enum-to-bool-conversion] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:598:47: warning: no header providing "o2::aod::track::ITSrefit" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:600:30: warning: conversion of 'TrackFlagsRun2Enum' into 'bool' will always return 'true', enum doesn't have a zero-value enumerator [bugprone-non-zero-enum-to-bool-conversion] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:600:47: warning: no header providing "o2::aod::track::TPCrefit" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:606:94: warning: no header providing "o2::constants::physics::MassMuon" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:788:32: warning: conversion of 'TrackFlagsRun2Enum' into 'bool' will always return 'true', enum doesn't have a zero-value enumerator [bugprone-non-zero-enum-to-bool-conversion] PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:791:32: warning: conversion of 'TrackFlagsRun2Enum' into 'bool' will always return 'true', enum doesn't have a zero-value enumerator [bugprone-non-zero-enum-to-bool-conversion] ``` #### `PWGLF/Tasks/Nuspex/spectraTOF.cxx` ```text PWGLF/Tasks/Nuspex/spectraTOF.cxx:24:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:33:1: warning: included header McCollisionExtra.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:44:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:46:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:56:6: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:56:17: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:56:28: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:60:28: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:84:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Nuspex/spectraTOF.cxx:85:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:86:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:118:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:118:40: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:159:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:161:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:254:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:298:37: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:300:25: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:319:35: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:323:84: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:372:86: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:447:69: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:456:78: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:601:7: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/spectraTOF.cxx:663:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:664:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:666:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:667:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:671:41: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:673:41: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:678:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:679:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:681:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:682:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:685:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:686:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:691:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:693:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:697:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:699:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:705:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:710:30: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:711:29: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:720:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:721:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:722:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:724:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:725:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:726:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:728:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:729:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:730:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:732:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:733:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:734:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:737:49: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:739:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:740:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:741:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:743:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:744:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:745:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:748:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:749:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:750:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:752:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:753:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:754:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:756:49: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:759:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:760:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:761:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:763:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:764:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:765:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:767:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:768:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:774:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:781:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:782:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:783:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:784:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:785:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:786:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:789:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:790:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:811:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:812:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:813:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:814:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOF.cxx:822:23: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:822:33: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:822:56: warning: no header providing "o2::aod::Run3MatchedToBCSparse" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:823:23: warning: no header providing "o2::aod::FT0s" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:828:52: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:828:99: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:828:151: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:846:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:848:32: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:1129:89: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:1141:86: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:1147:87: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:1153:84: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:1450:46: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:1453:42: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:1453:55: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:1459:30: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:1459:71: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:1704:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:1705:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:1847:42: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:1850:18: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:1895:60: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:2516:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:2518:58: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:2667:26: warning: no header providing "o2::aod::McCollision" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:2726:14: warning: conversion of 'TrackFlagsRun2Enum' into 'bool' will always return 'true', enum doesn't have a zero-value enumerator [bugprone-non-zero-enum-to-bool-conversion] PWGLF/Tasks/Nuspex/spectraTOF.cxx:2726:31: warning: no header providing "o2::aod::track::TPCrefit" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOF.cxx:2727:14: warning: conversion of 'TrackFlagsRun2Enum' into 'bool' will always return 'true', enum doesn't have a zero-value enumerator [bugprone-non-zero-enum-to-bool-conversion] PWGLF/Tasks/Nuspex/spectraTOF.cxx:2727:31: warning: no header providing "o2::aod::track::ITSrefit" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx` ```text PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:21:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:24:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:25:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:26:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:36:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:38:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:47:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:51:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:51:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:61:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:63:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:151:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:155:37: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:156:25: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:186:62: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:211:7: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:268:51: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:273:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:273:56: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:277:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:277:57: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:278:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:279:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:280:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:283:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:284:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:285:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:286:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:289:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:290:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:291:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:292:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:295:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:296:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:297:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:298:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:301:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:302:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:303:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:304:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:307:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:308:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:309:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:310:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:313:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:314:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:315:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:316:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:319:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:320:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:321:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:322:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:327:28: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:328:27: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:329:31: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:332:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:333:38: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:334:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:335:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:336:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:337:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:338:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:340:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:341:32: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:342:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:343:32: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:344:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:345:32: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:350:32: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:559:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:559:45: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:560:42: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:560:55: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:602:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:632:18: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:774:49: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTOFRun2.cxx:777:29: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/spectraTPC.cxx` ```text PWGLF/Tasks/Nuspex/spectraTPC.cxx:30:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:37:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:40:24: warning: no header providing "o2::framework::VariantType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:41:8: warning: no header providing "std::swap" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:50:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:59:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:60:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:78:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:84:55: warning: no header providing "o2::aod::track::TrackTypeEnum" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:87:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:91:37: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:92:25: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:100:46: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:103:24: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTPC.cxx:104:25: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTPC.cxx:112:28: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTPC.cxx:112:43: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:113:27: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTPC.cxx:114:31: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTPC.cxx:114:39: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:118:13: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:121:28: warning: no header providing "TMath::ASinH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:121:54: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:121:113: warning: no header providing "TMath::SinH" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:122:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:143:32: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:143:42: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:143:55: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:149:31: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:245:32: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTPC.cxx:245:47: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:246:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTPC.cxx:246:50: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPC.cxx:248:28: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTPC.cxx:249:27: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTPC.cxx:250:31: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ``` #### `PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx` ```text PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx:26:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx:36:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx:38:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx:40:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx:42:66: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx:45:24: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx:45:32: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx:46:25: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx:50:18: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx:53:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx:53:9: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx:61:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx:64:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx:64:28: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx:64:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx:65:42: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx:66:32: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx:66:46: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx:66:56: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCPiKaPr.cxx:66:69: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/spectraTPCtiny.cxx` ```text PWGLF/Tasks/Nuspex/spectraTPCtiny.cxx:26:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtiny.cxx:36:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtiny.cxx:38:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtiny.cxx:40:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtiny.cxx:42:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtiny.cxx:43:37: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtiny.cxx:44:25: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtiny.cxx:51:66: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtiny.cxx:54:24: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTPCtiny.cxx:54:32: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtiny.cxx:55:25: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTPCtiny.cxx:59:18: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtiny.cxx:62:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtiny.cxx:70:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtiny.cxx:73:32: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtiny.cxx:73:42: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtiny.cxx:73:55: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtiny.cxx:78:21: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Nuspex/spectraTPCtinyPiKaPr.cxx` ```text PWGLF/Tasks/Nuspex/spectraTPCtinyPiKaPr.cxx:26:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtinyPiKaPr.cxx:36:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtinyPiKaPr.cxx:38:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtinyPiKaPr.cxx:40:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtinyPiKaPr.cxx:42:66: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtinyPiKaPr.cxx:45:24: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTPCtinyPiKaPr.cxx:45:32: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtinyPiKaPr.cxx:46:25: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Nuspex/spectraTPCtinyPiKaPr.cxx:50:18: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtinyPiKaPr.cxx:53:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtinyPiKaPr.cxx:61:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtinyPiKaPr.cxx:64:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtinyPiKaPr.cxx:64:28: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtinyPiKaPr.cxx:64:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtinyPiKaPr.cxx:65:42: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtinyPiKaPr.cxx:66:32: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtinyPiKaPr.cxx:66:46: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtinyPiKaPr.cxx:66:56: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Nuspex/spectraTPCtinyPiKaPr.cxx:66:69: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/efficiencyQA.cxx` ```text PWGLF/Tasks/QC/efficiencyQA.cxx:12:1: warning: included header TPCPIDResponse.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:22:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:24:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:28:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:43:46: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:44:6: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:44:17: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:45:17: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:46:17: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:55:31: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:67:19: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:76:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:78:3: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:79:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:92:3: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:96:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, d_bz [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/efficiencyQA.cxx:98:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:104:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:139:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:154:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:172:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:172:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:183:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:190:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:190:59: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:214:7: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:214:64: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:214:91: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:214:118: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:298:21: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:334:54: warning: no header providing "THnBase" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:384:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:416:7: warning: uninitialized record type: 'momTag' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/efficiencyQA.cxx:417:7: warning: uninitialized record type: 'momProbe' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/efficiencyQA.cxx:424:7: warning: uninitialized record type: 'v0Mom' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/efficiencyQA.cxx:427:53: warning: no header providing "o2::constants::physics::MassKaonNeutral" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:452:7: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/efficiencyQA.cxx:463:29: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:474:47: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:478:7: warning: uninitialized record type: 'probe' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/efficiencyQA.cxx:506:9: warning: uninitialized record type: 'momTpc' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/efficiencyQA.cxx:518:42: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:518:52: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:537:11: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/efficiencyQA.cxx:553:16: warning: variable 'acceptTrackPt' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/QC/efficiencyQA.cxx:554:16: warning: variable 'acceptTrackEta' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/QC/efficiencyQA.cxx:555:16: warning: variable 'acceptTrackPhi' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/QC/efficiencyQA.cxx:562:68: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:563:93: warning: no header providing "std::exp" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:601:17: warning: uninitialized record type: 'momTagRefit' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/efficiencyQA.cxx:601:17: warning: uninitialized record type: 'momTpcRefit' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/efficiencyQA.cxx:601:17: warning: uninitialized record type: 'v0MomRefit' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/efficiencyQA.cxx:658:63: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:659:63: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:663:9: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/efficiencyQA.cxx:665:9: warning: uninitialized record type: 'momTag' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/efficiencyQA.cxx:700:13: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/efficiencyQA.cxx:716:13: warning: uninitialized record type: 'momTpc' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/efficiencyQA.cxx:716:13: warning: uninitialized record type: 'v0Mom' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/efficiencyQA.cxx:787:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/efficiencyQA.cxx:851:11: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/efficiencyQA.cxx:887:26: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGLF/Tasks/QC/efficiencyQA.cxx:897:31: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] ``` #### `PWGLF/Tasks/QC/findableStudy.cxx` ```text PWGLF/Tasks/QC/findableStudy.cxx:22:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:30:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:31:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:32:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:33:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:34:1: warning: included header McCollisionExtra.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:35:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:37:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:38:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:39:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:40:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:41:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:42:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:46:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:48:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:49:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:50:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:51:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:52:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:53:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:54:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:75:8: warning: constructor does not initialize these fields: maskTopological, maskTrackProperties, maskK0ShortSpecific, maskLambdaSpecific, maskAntiLambdaSpecific, maskSelectionK0Short, maskSelectionLambda, maskSelectionAntiLambda [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/findableStudy.cxx:76:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:76:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:79:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:82:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:82:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:98:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:109:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:121:46: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:129:56: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:164:82: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:175:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:244:154: warning: no header providing "o2::constants::physics::MassKaonNeutral" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:246:154: warning: no header providing "o2::constants::physics::MassPhoton" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:248:154: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:337:9: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/findableStudy.cxx:463:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/hypertriton3bodyQa.cxx` ```text PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:17:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:21:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:22:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:23:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:28:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:32:1: warning: included header IRFrame.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:33:1: warning: included header InteractionRecord.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:34:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:38:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:52:19: warning: no header providing "o2::common::core::MetadataHelper" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:61:34: warning: no header providing "TMath::C" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:73:33: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:120:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:122:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:125:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:142:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:145:43: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:244:17: warning: no header providing "o2::pid::tof::TOFResoParamsV3" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:247:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:258:42: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:261:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:261:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:269:17: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:307:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:323:68: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:323:123: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:451:43: warning: no header providing "o2::pid::tof::ExpTimes" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:454:54: warning: no header providing "o2::track::pid_constants::sMasses2Z" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/hypertriton3bodyQa.cxx:678:17: warning: no header providing "o2::pid::tof::TOFResoParamsV2" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/kfPerformanceStudy.cxx` ```text PWGLF/Tasks/QC/kfPerformanceStudy.cxx:18:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/kfPerformanceStudy.cxx:19:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/kfPerformanceStudy.cxx:20:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/kfPerformanceStudy.cxx:21:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/kfPerformanceStudy.cxx:22:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/kfPerformanceStudy.cxx:23:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/kfPerformanceStudy.cxx:24:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/kfPerformanceStudy.cxx:26:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/kfPerformanceStudy.cxx:30:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/kfPerformanceStudy.cxx:37:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfPerformanceStudy.cxx:37:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/QC/kfPerformanceStudy.cxx:44:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfPerformanceStudy.cxx:44:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfPerformanceStudy.cxx:53:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfPerformanceStudy.cxx:53:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfPerformanceStudy.cxx:55:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfPerformanceStudy.cxx:57:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfPerformanceStudy.cxx:61:48: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfPerformanceStudy.cxx:86:52: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfPerformanceStudy.cxx:100:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfPerformanceStudy.cxx:132:32: warning: no header providing "TMath::ACos" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/kfStrangenessStudy.cxx` ```text PWGLF/Tasks/QC/kfStrangenessStudy.cxx:19:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:24:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:26:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:30:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:31:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:34:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:35:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:42:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:50:8: warning: constructor does not initialize these fields: ccdb, lut, vtxRec, vtxRecKF, vtxRecErr, vtxRecErrKF, vtxRecV0, vtxRecKFV0, vtxRecErrV0, vtxRecErrKFV0, momProtonRecIU, momPionRecIU, momProtonRecIUErr, momPionRecIUErr, momProtonRec, momPionRec, momProtonRecErr, momPionRecErr, posProtonRec, posPionRec, posProtonRecErr, posPionRecErr, posProtonRecIU, posPionRecIU, posBachRecIU, vtxGen, vtxGenV0, prodVtxGen, momProtonGen, momPionGen [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:52:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:55:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:55:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:61:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:62:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:68:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:68:21: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:80:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:130:20: warning: no header providing "o2::dataformats::DCA" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:133:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:142:52: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:144:43: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:247:34: warning: no header providing "TMath::ACos" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:253:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:416:13: warning: uninitialized record type: 'covneg' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:416:13: warning: uninitialized record type: 'covpos' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:417:13: warning: uninitialized record type: 'xyzneg' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:417:13: warning: uninitialized record type: 'xyzpos' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:646:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:669:7: warning: uninitialized record type: 'cvpion' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:669:7: warning: uninitialized record type: 'cvproton' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:703:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:723:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:747:7: warning: uninitialized record type: 'cvpion' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/kfStrangenessStudy.cxx:747:7: warning: uninitialized record type: 'cvproton' [cppcoreguidelines-pro-type-member-init] ``` #### `PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx` ```text PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:12:1: warning: included header PIDTOF.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:13:1: warning: included header TPCPIDResponse.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:14:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:15:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:19:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:22:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:27:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:29:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:45:31: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:54:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:55:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:55:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:75:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:115:112: warning: no header providing "o2::constants::physics::MassDeuteron" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:117:112: warning: no header providing "o2::constants::physics::MassHelium3" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:125:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:128:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:131:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:134:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:137:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:142:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:144:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:144:59: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:145:16: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:178:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:205:12: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx` ```text PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:20:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:21:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:23:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:28:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:32:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:34:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:35:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:36:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:38:1: warning: included header TVector3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:52:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:52:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:54:68: warning: no header providing "o2::aod::CentFT0Ms" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:61:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:61:54: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:65:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:95:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:99:77: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:102:147: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:127:25: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:283:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:291:50: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:296:50: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:301:50: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:306:50: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx:355:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/lfpidqa.cxx` ```text PWGLF/Tasks/QC/lfpidqa.cxx:22:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfpidqa.cxx:23:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfpidqa.cxx:25:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfpidqa.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfpidqa.cxx:107:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfpidqa.cxx:107:16: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfpidqa.cxx:125:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfpidqa.cxx:126:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfpidqa.cxx:132:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfpidqa.cxx:136:9: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/QC/lfpidqa.cxx:137:27: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfpidqa.cxx:147:31: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfpidqa.cxx:149:30: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:149:49: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfpidqa.cxx:152:29: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:154:32: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:156:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:156:56: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:157:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:157:56: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:158:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:158:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:159:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:159:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:160:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:160:62: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:161:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:161:62: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:163:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:163:55: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:164:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:164:57: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:165:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:165:61: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:167:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:167:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:168:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:168:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:169:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:169:60: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:170:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:170:60: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:171:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:171:64: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:172:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:172:64: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/QC/lfpidqa.cxx:240:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/lfpropStudy.cxx` ```text PWGLF/Tasks/QC/lfpropStudy.cxx:17:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfpropStudy.cxx:18:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfpropStudy.cxx:19:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfpropStudy.cxx:20:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfpropStudy.cxx:21:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfpropStudy.cxx:23:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfpropStudy.cxx:29:1: warning: included header DCA.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfpropStudy.cxx:30:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/lfpropStudy.cxx:44:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfpropStudy.cxx:48:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfpropStudy.cxx:53:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfpropStudy.cxx:53:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfpropStudy.cxx:57:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfpropStudy.cxx:59:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfpropStudy.cxx:61:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfpropStudy.cxx:199:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfpropStudy.cxx:207:23: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfpropStudy.cxx:382:44: warning: no header providing "o2::aod::track::TrackIU" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfpropStudy.cxx:389:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/lfpropStudy.cxx:448:22: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/mcParticlePrediction.cxx` ```text PWGLF/Tasks/QC/mcParticlePrediction.cxx:22:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:29:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:32:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:39:19: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:39:31: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:124:6: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:124:17: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:124:28: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:125:28: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:142:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/mcParticlePrediction.cxx:145:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:149:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:156:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:156:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:179:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:182:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:186:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:201:68: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:223:59: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:273:40: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:369:5: warning: uninitialized record type: 'nMult' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/mcParticlePrediction.cxx:430:21: warning: no header providing "o2::aod::McCollision" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:431:21: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:439:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:481:7: warning: no header providing "TParticlePDG" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:483:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:509:25: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:509:35: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:509:50: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:509:68: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:511:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:511:58: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:512:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:513:35: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:513:52: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:514:25: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:515:35: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:515:45: warning: no header providing "o2::aod::Run3MatchedToBCSparse" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:518:25: warning: no header providing "o2::aod::FT0s" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:530:46: warning: no header providing "o2::aod::evsel::kIsBBT0A" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:534:46: warning: no header providing "o2::aod::evsel::kIsBBT0C" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:538:81: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:577:78: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:582:82: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:587:82: warning: no header providing "o2::aod::evsel::kIsVertexTRDmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcParticlePrediction.cxx:683:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/mcSignalLoss.cxx` ```text PWGLF/Tasks/QC/mcSignalLoss.cxx:29:1: warning: included header PIDTOF.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:30:1: warning: included header TPCPIDResponse.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:31:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:32:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:34:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:35:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:37:1: warning: included header BetheBlochAleph.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:38:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:44:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:51:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:59:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/mcSignalLoss.cxx:60:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:64:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:66:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:76:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:82:23: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:90:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:92:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:92:58: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:94:16: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:96:16: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:107:48: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:107:103: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcSignalLoss.cxx:107:131: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/mcinelgt0.cxx` ```text PWGLF/Tasks/QC/mcinelgt0.cxx:22:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/mcinelgt0.cxx:25:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcinelgt0.cxx:27:42: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcinelgt0.cxx:31:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcinelgt0.cxx:32:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcinelgt0.cxx:33:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcinelgt0.cxx:33:21: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcinelgt0.cxx:33:60: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcinelgt0.cxx:34:25: warning: no header providing "o2::aod::McCollision" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcinelgt0.cxx:35:25: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcinelgt0.cxx:35:46: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcinelgt0.cxx:35:60: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcinelgt0.cxx:35:81: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcinelgt0.cxx:36:41: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcinelgt0.cxx:36:60: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcinelgt0.cxx:36:82: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcinelgt0.cxx:37:25: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/mcinelgt0.cxx:51:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/resonanceqa.cxx` ```text PWGLF/Tasks/QC/resonanceqa.cxx:19:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:20:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:21:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:33:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:35:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:37:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:38:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:39:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:40:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:41:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:42:1: warning: included header THn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:43:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:44:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:45:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:46:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:56:8: warning: constructor does not initialize these fields: rapidity, genMass, recMass, resolution, pvec0, pvec1, pvec1_roat [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/resonanceqa.cxx:58:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:60:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:74:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:76:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:89:87: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:117:47: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:180:12: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:273:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:274:58: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:275:23: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:277:3: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/resonanceqa.cxx:333:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/stqa.cxx` ```text PWGLF/Tasks/QC/stqa.cxx:16:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/stqa.cxx:28:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/stqa.cxx:30:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/stqa.cxx:30:13: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/stqa.cxx:33:13: warning: no header providing "TH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/stqa.cxx:42:19: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/stqa.cxx:45:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/stqa.cxx:99:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/straRecoStudy.cxx` ```text PWGLF/Tasks/QC/straRecoStudy.cxx:23:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:26:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:27:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:28:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:29:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:32:1: warning: included header PIDResponseTPC.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:35:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:36:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:37:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:38:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:39:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:40:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:44:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:46:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:47:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:48:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:49:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:50:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:51:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:52:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:73:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:73:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:96:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:99:10: warning: no header providing "std::iota" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:105:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:107:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:122:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:126:54: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:147:16: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:147:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:190:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:197:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:209:26: warning: no header providing "TMath::Sign" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:209:62: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:213:77: warning: no header providing "TMath::Power" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:298:8: warning: constructor does not initialize these fields: evselstats [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/straRecoStudy.cxx:303:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:341:10: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:388:5: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:393:18: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:399:96: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:443:62: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:464:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:479:33: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/QC/straRecoStudy.cxx:527:72: warning: no header providing "TMath::ACos" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/straRecoStudy.cxx:566:33: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/QC/straRecoStudy.cxx:611:33: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/QC/straRecoStudy.cxx:717:33: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ``` #### `PWGLF/Tasks/QC/strangederivedqa.cxx` ```text PWGLF/Tasks/QC/strangederivedqa.cxx:17:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:22:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:23:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:24:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:25:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:26:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:27:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:33:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:34:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:35:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:42:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/QC/strangederivedqa.cxx:45:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:45:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:47:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:50:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:52:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:54:25: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:54:58: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:59:26: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:59:65: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:77:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:142:9: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangederivedqa.cxx:150:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/strangenessQCPP.cxx` ```text PWGLF/Tasks/QC/strangenessQCPP.cxx:19:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:20:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:30:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/strangenessQCPP.cxx:32:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:32:49: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:44:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:52:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:78:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:83:38: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGLF/Tasks/QC/strangenessQCPP.cxx:83:50: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:124:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:126:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:129:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:176:49: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:179:34: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:180:40: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:190:42: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:192:56: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:263:5: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:265:10: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:265:41: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:265:46: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:319:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:319:25: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:338:23: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:345:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:352:63: warning: no header providing "TMath::ACos" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:377:71: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:377:174: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessQCPP.cxx:402:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/strangenessTrackingQC.cxx` ```text PWGLF/Tasks/QC/strangenessTrackingQC.cxx:14:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:17:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:23:1: warning: included header BetheBlochAleph.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:26:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:59:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:64:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:75:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:81:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:89:57: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:128:21: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:128:39: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:132:17: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:156:5: warning: uninitialized record type: 'cascMom' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:157:5: warning: uninitialized record type: 'v0Mom' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:158:5: warning: uninitialized record type: 'bachelorMom' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:193:64: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:193:97: warning: no header providing "o2::constants::physics::MassKaonCharged" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:194:94: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:196:16: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:196:58: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:202:28: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:220:17: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:227:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:233:29: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:259:7: warning: uninitialized record type: 'miniCasc' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/strangenessTrackingQC.cxx:288:7: warning: uninitialized record type: 'miniCasc' [cppcoreguidelines-pro-type-member-init] ``` #### `PWGLF/Tasks/QC/strangepidqa.cxx` ```text PWGLF/Tasks/QC/strangepidqa.cxx:18:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:19:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:20:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:22:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:25:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:27:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:31:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:33:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:34:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:35:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:36:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:37:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:38:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:39:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:48:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/QC/strangepidqa.cxx:49:12: warning: no header providing "std::cout" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:49:12: warning: using decl 'cout' is unused [misc-unused-using-decls] PWGLF/Tasks/QC/strangepidqa.cxx:50:12: warning: using decl 'endl' is unused [misc-unused-using-decls] PWGLF/Tasks/QC/strangepidqa.cxx:53:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:53:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:54:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:57:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:65:3: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:79:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:103:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:106:56: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:108:53: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:172:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:180:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:226:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:313:65: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:343:66: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:405:63: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:421:66: warning: no header providing "o2::constants::physics::MassOmegaMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strangepidqa.cxx:456:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/strderivedGenQA.cxx` ```text PWGLF/Tasks/QC/strderivedGenQA.cxx:27:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:28:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:29:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:30:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:31:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:33:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:35:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:39:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:41:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:42:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:43:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:44:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:45:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:46:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:47:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:67:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:67:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:77:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:79:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:128:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:129:56: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:150:60: warning: no header providing "TMath::TwoPi" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:181:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:184:40: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:188:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:188:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:206:52: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:231:69: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:244:79: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:304:63: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:492:18: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:498:54: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:531:83: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:534:88: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:537:84: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:543:91: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:546:94: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:549:95: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:552:95: warning: no header providing "o2::aod::evsel::kIsVertexTRDmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:555:91: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:558:97: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:561:100: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStrict" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:564:100: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeNarrow" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:567:91: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:570:94: warning: no header providing "o2::aod::evsel::kNoCollInRofStrict" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:729:59: warning: no header providing "TMath::ACos" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:741:7: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:1098:23: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:1101:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/strderivedGenQA.cxx:1230:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/systematicsMapping.cxx` ```text PWGLF/Tasks/QC/systematicsMapping.cxx:27:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/systematicsMapping.cxx:36:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/systematicsMapping.cxx:38:70: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/systematicsMapping.cxx:45:40: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/systematicsMapping.cxx:48:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/systematicsMapping.cxx:65:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/systematicsMapping.cxx:67:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/systematicsMapping.cxx:83:45: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/systematicsMapping.cxx:107:143: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/systematicsMapping.cxx:152:108: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/systematicsMapping.cxx:164:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/tpc_dEdx_postcalibration.cxx` ```text PWGLF/Tasks/QC/tpc_dEdx_postcalibration.cxx:17:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dEdx_postcalibration.cxx:18:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dEdx_postcalibration.cxx:19:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dEdx_postcalibration.cxx:25:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dEdx_postcalibration.cxx:29:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dEdx_postcalibration.cxx:46:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dEdx_postcalibration.cxx:49:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dEdx_postcalibration.cxx:91:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dEdx_postcalibration.cxx:127:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dEdx_postcalibration.cxx:127:36: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dEdx_postcalibration.cxx:131:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dEdx_postcalibration.cxx:133:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dEdx_postcalibration.cxx:142:36: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dEdx_postcalibration.cxx:353:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/tpc_dedx_qa.cxx` ```text PWGLF/Tasks/QC/tpc_dedx_qa.cxx:17:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dedx_qa.cxx:18:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dedx_qa.cxx:19:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dedx_qa.cxx:22:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dedx_qa.cxx:27:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dedx_qa.cxx:31:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dedx_qa.cxx:48:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dedx_qa.cxx:51:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dedx_qa.cxx:91:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dedx_qa.cxx:124:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dedx_qa.cxx:124:42: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dedx_qa.cxx:130:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dedx_qa.cxx:134:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dedx_qa.cxx:142:36: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/tpc_dedx_qa.cxx:451:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/trackchecks.cxx` ```text PWGLF/Tasks/QC/trackchecks.cxx:11:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/trackchecks.cxx:22:1: warning: included header TF1.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/trackchecks.cxx:24:1: warning: included header array is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/trackchecks.cxx:26:1: warning: included header utility is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/trackchecks.cxx:35:12: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/trackchecks.cxx:40:14: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/trackchecks.cxx:84:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/trackchecks.cxx:89:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/trackchecks.cxx:91:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/trackchecks.cxx:95:127: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/trackchecks.cxx:105:143: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/trackchecks.cxx:240:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/trackedCascadeProperties.cxx` ```text PWGLF/Tasks/QC/trackedCascadeProperties.cxx:21:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:22:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:25:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:27:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:35:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:39:1: warning: included header DCA.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:40:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:42:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:43:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:44:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:45:1: warning: included header TVector2.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:46:1: warning: included header TVector3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:59:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:65:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:68:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:73:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:76:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:76:50: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:82:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:102:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:109:53: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:153:18: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:174:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:261:33: warning: no header providing "o2::constants::physics::MassXiPlusBar" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:262:36: warning: no header providing "o2::constants::physics::MassOmegaPlusBar" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/trackedCascadeProperties.cxx:308:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/v0assoqa.cxx` ```text PWGLF/Tasks/QC/v0assoqa.cxx:14:1: warning: included header LFParticleIdentification.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:18:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:20:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:22:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:25:1: warning: included header PIDResponseTPC.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:30:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:31:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:33:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:37:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:39:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:40:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:41:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:42:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:43:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:44:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:45:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:54:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/QC/v0assoqa.cxx:68:8: warning: constructor does not initialize these fields: ccdb, mRunNumber [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/v0assoqa.cxx:69:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:69:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:74:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:75:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:78:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:84:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:85:10: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:86:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:158:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:160:54: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:173:46: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:267:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:281:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0assoqa.cxx:325:14: warning: no header providing "std::vector" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/v0cascadesqa.cxx` ```text PWGLF/Tasks/QC/v0cascadesqa.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:24:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:25:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:27:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:28:1: warning: included header PIDResponseTOF.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:33:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:37:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:42:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:52:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:60:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:85:38: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGLF/Tasks/QC/v0cascadesqa.cxx:85:62: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:93:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:93:13: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:95:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:98:43: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:101:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:151:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:153:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:184:37: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:185:43: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:199:47: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:202:71: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:249:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:257:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:267:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:267:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:277:51: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:302:31: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:304:52: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:342:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:396:7: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:412:101: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:431:70: warning: no header providing "TMath::ACos" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:453:73: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/v0cascadesqa.cxx:509:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/QC/vertexQA.cxx` ```text PWGLF/Tasks/QC/vertexQA.cxx:41:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/vertexQA.cxx:63:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/QC/vertexQA.cxx:64:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/vertexQA.cxx:67:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/vertexQA.cxx:69:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/vertexQA.cxx:71:16: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/vertexQA.cxx:80:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/vertexQA.cxx:100:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/vertexQA.cxx:100:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/vertexQA.cxx:106:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/vertexQA.cxx:108:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/vertexQA.cxx:108:69: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/vertexQA.cxx:121:16: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/vertexQA.cxx:136:52: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/vertexQA.cxx:155:17: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/vertexQA.cxx:174:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/vertexQA.cxx:251:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/QC/vertexQA.cxx:281:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx` ```text PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:24:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:35:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:36:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:37:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:43:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:44:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:46:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:49:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:50:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:53:1: warning: included header TVector2.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:55:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:56:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:57:1: warning: included header TH1D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:58:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:59:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:60:1: warning: included header THn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:61:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:62:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:78:8: warning: constructor does not initialize these fields: ccdb, pdg, centrality, lMultiplicity [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:84:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:85:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:85:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:99:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:129:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:135:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:251:77: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:264:15: warning: no header providing "ROOT::Math::PxPyPzEVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:267:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:281:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:303:51: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:306:81: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:398:67: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:404:84: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:731:17: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:732:17: warning: no header providing "ROOT::Math::XYZVectorF" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:734:17: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:735:11: warning: variable 'theta2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:1089:27: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:1121:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:1124:40: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:1126:3: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/chk892Flow.cxx` ```text PWGLF/Tasks/Resonances/chk892Flow.cxx:21:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:22:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:35:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:36:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:37:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:38:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:41:1: warning: included header EndOfStreamContext.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:44:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:45:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:47:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:49:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:50:1: warning: included header RotationZ.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:51:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:52:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:54:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:55:1: warning: included header TVector2.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:56:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:57:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:58:1: warning: included header TH1D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:59:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:60:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:62:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:63:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:70:1: warning: included header unordered_map is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:71:1: warning: included header unordered_set is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:81:8: warning: constructor does not initialize these fields: ccdb, pdg, lDetId, lRefAId, lRefBId, lQvecDetInd, lQvecRefAInd, lQvecRefBInd, lCentrality [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/chk892Flow.cxx:105:19: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:134:44: warning: no header providing "ROOT::Math::LorentzVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:134:70: warning: no header providing "ROOT::Math::PxPyPzM4D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:136:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:138:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:142:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:143:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:149:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:149:46: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:194:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:293:17: warning: no header providing "kK0Short" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:294:16: warning: no header providing "kK0" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:297:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:314:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:338:53: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:729:39: warning: no header providing "kPiPlus" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:1029:29: warning: no header providing "ROOT::Math::RotationZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892Flow.cxx:1077:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/chk892pp.cxx` ```text PWGLF/Tasks/Resonances/chk892pp.cxx:18:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:19:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:20:1: warning: included header TH1D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:21:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:22:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:24:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:25:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:32:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:33:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:34:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:46:1: warning: included header DCAFitterN.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:47:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:48:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:49:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:54:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:55:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:57:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:59:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:60:1: warning: included header RotationZ.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:61:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:62:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:64:1: warning: included header TParticlePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:65:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:66:1: warning: included header TVector2.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:67:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:70:1: warning: included header array is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:102:8: warning: constructor does not initialize these fields: ccdb, pdg, lCentrality [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/chk892pp.cxx:141:44: warning: no header providing "ROOT::Math::LorentzVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:141:70: warning: no header providing "ROOT::Math::PxPyPzM4D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:143:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:145:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:149:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:150:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:156:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:156:46: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:187:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:279:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:297:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:321:51: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:721:22: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:1056:30: warning: no header providing "std::decay_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:1255:29: warning: no header providing "ROOT::Math::RotationZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/chk892pp.cxx:1298:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/cksspinalignder.cxx` ```text PWGLF/Tasks/Resonances/cksspinalignder.cxx:20:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:27:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:32:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:33:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:39:1: warning: included header deque is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:42:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:44:1: warning: included header set is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:47:1: warning: included header type_traits is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:48:1: warning: included header unordered_map is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:62:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/cksspinalignder.cxx:66:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:66:75: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:66:102: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:66:129: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:103:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:105:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:105:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:107:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:110:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:113:46: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:166:20: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:214:15: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:216:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:217:15: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:226:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:373:5: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/cksspinalignder.cxx:382:17: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/deltaanalysis.cxx` ```text PWGLF/Tasks/Resonances/deltaanalysis.cxx:15:1: warning: included header PIDTOF.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:16:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:17:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:18:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:19:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:21:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:25:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:27:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:28:1: warning: included header BetheBlochAleph.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:33:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:35:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:37:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:38:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:39:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:40:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:41:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:42:1: warning: included header THn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:45:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:46:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:55:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Resonances/deltaanalysis.cxx:59:52: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:60:54: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:70:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:72:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:86:3: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:88:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:88:44: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:91:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:101:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:108:96: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:295:23: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:298:3: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:309:13: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:333:17: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Resonances/deltaanalysis.cxx:355:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/deltaanalysis.cxx:385:17: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Resonances/deltaanalysis.cxx:536:17: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ``` #### `PWGLF/Tasks/Resonances/doubleResonanceScan.cxx` ```text PWGLF/Tasks/Resonances/doubleResonanceScan.cxx:22:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/doubleResonanceScan.cxx:37:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doubleResonanceScan.cxx:37:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doubleResonanceScan.cxx:40:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doubleResonanceScan.cxx:41:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doubleResonanceScan.cxx:41:46: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doubleResonanceScan.cxx:45:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doubleResonanceScan.cxx:124:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doubleResonanceScan.cxx:134:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doubleResonanceScan.cxx:147:40: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doubleResonanceScan.cxx:148:67: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doubleResonanceScan.cxx:198:66: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doubleResonanceScan.cxx:347:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doubleResonanceScan.cxx:427:20: warning: no header providing "std::pair" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doubleResonanceScan.cxx:533:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/doublephimeson.cxx` ```text PWGLF/Tasks/Resonances/doublephimeson.cxx:18:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:20:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:21:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:24:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:29:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:30:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:35:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:37:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:48:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:48:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:70:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:90:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:93:72: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:95:70: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:103:54: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:106:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:118:48: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:134:37: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:134:64: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:149:38: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:152:12: warning: variable 'pt1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/doublephimeson.cxx:152:17: warning: variable 'pt2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/doublephimeson.cxx:152:22: warning: variable 'pz1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/doublephimeson.cxx:152:27: warning: variable 'pz2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/doublephimeson.cxx:152:32: warning: variable 'p1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/doublephimeson.cxx:152:36: warning: variable 'p2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/doublephimeson.cxx:152:40: warning: variable 'angle' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/doublephimeson.cxx:166:12: warning: variable 'pt1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/doublephimeson.cxx:166:17: warning: variable 'pt2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/doublephimeson.cxx:166:22: warning: variable 'pz1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/doublephimeson.cxx:166:27: warning: variable 'pz2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/doublephimeson.cxx:166:32: warning: variable 'p1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/doublephimeson.cxx:166:36: warning: variable 'p2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/doublephimeson.cxx:166:40: warning: variable 'angle' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/doublephimeson.cxx:179:15: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:191:33: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:191:78: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:200:33: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:452:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:532:62: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:763:35: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:818:20: warning: no header providing "std::min" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:912:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:1156:40: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:1162:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/doublephimeson.cxx:1263:34: warning: no header providing "std::move" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/f0980analysis.cxx` ```text PWGLF/Tasks/Resonances/f0980analysis.cxx:19:1: warning: included header inelGt.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:21:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:22:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:23:1: warning: included header PIDResponseTOF.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:24:1: warning: included header PIDResponseTPC.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:29:1: warning: included header AnalysisHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:33:1: warning: included header LorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:34:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:48:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:49:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:49:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:51:31: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:55:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:80:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:81:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:99:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:103:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:124:68: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:283:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Resonances/f0980analysis.cxx:311:28: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:316:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:339:17: warning: no header providing "ROOT::Math::LorentzVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:339:43: warning: no header providing "ROOT::Math::PxPyPzM4D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:426:27: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:460:43: warning: no header providing "kPiPlus" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:502:43: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:502:64: warning: no header providing "o2::aod::PVMults" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:516:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980analysis.cxx:523:44: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx` ```text PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:29:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:30:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:42:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:43:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:44:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:48:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:49:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:50:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:52:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:55:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:56:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:57:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:59:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:61:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:64:1: warning: included header PIDResponseITS.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:72:8: warning: constructor does not initialize these fields: ccdb, detId, refAId, refBId, qVecDetInd, qVecRefAInd, qVecRefBInd, eventPlaneDet, eventPlaneRefA, eventPlaneRefB, centrality, angle, relPhi, relPhiRot, relPhiMix, massPtl [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:76:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:78:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:82:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:142:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:241:40: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:351:69: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:357:72: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:363:74: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:513:12: warning: variable 'pt1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:513:17: warning: variable 'pt2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:513:22: warning: variable 'pz1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:513:27: warning: variable 'pz2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:513:32: warning: variable 'p1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:513:36: warning: variable 'p2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:513:40: warning: variable 'angle' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:560:17: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:630:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:697:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:699:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:708:46: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:710:46: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/f1protoncorrelation.cxx` ```text PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:18:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:22:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:24:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:28:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:33:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:36:1: warning: included header TObjString.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:42:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:43:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:45:1: warning: included header sstream is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:54:8: warning: constructor does not initialize these fields: ccdb, combinedTPC [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:60:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:64:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:64:74: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:64:101: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:64:128: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:67:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:67:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:94:46: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:111:16: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:231:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:287:29: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:378:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:384:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:395:74: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:401:66: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:406:78: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:424:50: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:439:24: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:462:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:464:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:465:40: warning: no header providing "std::asin" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:494:37: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:494:64: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:513:17: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:576:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:590:54: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:656:23: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/heptaquark.cxx` ```text PWGLF/Tasks/Resonances/heptaquark.cxx:17:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:20:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:23:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:27:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:28:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:29:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:31:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:32:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:34:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:37:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:38:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:48:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:48:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:73:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:78:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:80:48: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:91:53: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:105:3: warning: no header providing "TRandom" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:111:20: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:202:5: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:208:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:222:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:254:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:301:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:317:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:355:67: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:361:46: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/heptaquark.cxx:361:80: warning: no header providing "std::sin" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/higherMassResonances.cxx` ```text PWGLF/Tasks/Resonances/higherMassResonances.cxx:22:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:23:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:35:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:37:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:40:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:41:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:44:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:45:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:46:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:47:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:49:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:50:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:71:8: warning: constructor does not initialize these fields: theta2, pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/higherMassResonances.cxx:73:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:73:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:78:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:79:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:84:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:180:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:180:44: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:193:91: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:203:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:204:15: warning: no header providing "ROOT::Math::PxPyPzEVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:205:15: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:206:15: warning: no header providing "ROOT::Math::XYZVectorF" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:216:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:221:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:235:14: warning: no header providing "std::accumulate" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:257:58: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:259:65: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:265:64: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:332:55: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:343:100: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:351:65: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:433:76: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:438:77: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:448:79: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:466:69: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:565:126: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:566:51: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:620:95: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:850:16: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:874:53: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:961:63: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:1153:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:1160:27: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:1177:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:1287:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/higherMassResonances.cxx:1306:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/highmasslambda.cxx` ```text PWGLF/Tasks/Resonances/highmasslambda.cxx:17:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:28:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:30:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:36:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:40:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:41:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:42:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:43:1: warning: included header TF1.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:44:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:46:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:47:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:48:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:49:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:50:1: warning: included header THn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:51:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:53:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:62:1: warning: included header utilsEvSelHf.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:63:1: warning: included header utilsTrkCandHf.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:67:1: warning: included header V0.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:73:8: warning: constructor does not initialize these fields: multEstimator, ccdb, pdg, v2, v2Rot [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/highmasslambda.cxx:75:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:77:13: warning: no header providing "o2::base::Propagator" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:82:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:141:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:169:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:171:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:186:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:204:40: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:205:46: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:222:39: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:232:78: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:556:40: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:557:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:558:15: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:564:98: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:564:158: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:567:70: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:567:131: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:567:191: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:567:255: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:605:78: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:720:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:725:5: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambda.cxx:1024:16: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/highmasslambda.cxx:1024:21: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/highmasslambda.cxx:1087:20: warning: variable 'phirot' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/highmasslambda.cxx:1087:28: warning: variable 'thetarot' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGLF/Tasks/Resonances/highmasslambdasvx.cxx` ```text PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:15:1: warning: included header utilsEvSelHf.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:16:1: warning: included header utilsTrkCandHf.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:20:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:30:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:32:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:33:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:34:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:39:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:45:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:46:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:47:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:48:1: warning: included header TF1.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:49:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:51:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:52:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:53:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:54:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:55:1: warning: included header THn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:56:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:58:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:69:8: warning: constructor does not initialize these fields: mRunNumber, multEstimator, d_bz, ccdb, pdg, lut, v2, v2Rot [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:74:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:78:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:79:13: warning: no header providing "o2::base::Propagator" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:91:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:91:21: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:151:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:176:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:178:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:180:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:185:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:197:76: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:199:52: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:200:40: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:203:84: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:520:40: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:521:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:545:66: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:545:126: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:548:71: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:641:15: warning: variable 'v0x' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:641:20: warning: variable 'v0y' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:641:25: warning: variable 'v0z' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:641:30: warning: variable 'v0px' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:641:36: warning: variable 'v0py' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:641:42: warning: variable 'v0pz' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:644:15: warning: variable 'posTrackX' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:644:26: warning: variable 'negTrackX' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:691:29: warning: no header providing "std::runtime_error" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:702:20: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:723:16: warning: variable 'phi' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:723:21: warning: variable 'theta' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:812:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/initializereventqa.cxx` ```text PWGLF/Tasks/Resonances/initializereventqa.cxx:23:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:39:1: warning: included header TRandom2.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:40:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:49:25: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:50:34: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:50:70: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:52:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/initializereventqa.cxx:55:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:58:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:61:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:64:34: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:76:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:101:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:103:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:107:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:108:5: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:111:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:113:5: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:116:43: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:118:39: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:118:44: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:149:75: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:155:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:155:49: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:155:66: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:155:98: warning: no header providing "o2::aod::track::flags" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:155:118: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:155:144: warning: no header providing "o2::aod::track::PVContributor" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:159:3: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:194:62: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:203:69: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:212:70: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:221:64: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:228:69: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:235:67: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:242:68: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:249:75: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeNarrow" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:298:35: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:314:82: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:329:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:329:17: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:329:64: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:330:57: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:333:36: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:379:32: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/initializereventqa.cxx:464:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx` ```text PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:19:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:20:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:23:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:28:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:65:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:66:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:67:17: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:67:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:68:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:68:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:69:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:72:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:75:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:75:46: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:129:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:132:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:151:86: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:291:123: warning: no header providing "o2::constants::math::Epsilon" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:458:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:643:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:712:30: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:712:66: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1AnalysisMicro.cxx:717:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/k1analysis.cxx` ```text PWGLF/Tasks/Resonances/k1analysis.cxx:20:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:21:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:24:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:29:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:64:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:65:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:66:17: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:66:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:67:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:67:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:68:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:71:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:74:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:74:46: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:126:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:129:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:148:85: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:455:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:647:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:662:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Resonances/k1analysis.cxx:712:30: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:712:66: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k1analysis.cxx:717:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx` ```text PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:18:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:19:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:36:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:37:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:38:17: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:38:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:41:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:66:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:77:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:77:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:82:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:82:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:84:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:88:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:104:62: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:106:76: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:138:64: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:144:61: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:314:23: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:319:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:377:9: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:441:25: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:454:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:471:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:497:24: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:497:60: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892SpherocityAnalysis.cxx:507:7: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/k892analysis.cxx` ```text PWGLF/Tasks/Resonances/k892analysis.cxx:20:1: warning: included header inelGt.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:22:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:23:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:26:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:32:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:42:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:43:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:44:17: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:44:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:45:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:45:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:47:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:51:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:51:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:56:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:136:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:138:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:150:69: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:169:78: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:187:73: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:256:78: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:270:84: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:449:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:504:47: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:504:71: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:712:129: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:712:146: warning: no header providing "o2::aod::PVMults" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:729:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:735:38: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:737:11: warning: variable 'multiplicity' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/k892analysis.cxx:778:11: warning: variable 'multiplicity' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/k892analysis.cxx:853:30: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:853:66: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysis.cxx:858:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/k892analysispbpb.cxx` ```text PWGLF/Tasks/Resonances/k892analysispbpb.cxx:16:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:17:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:26:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:31:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:33:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:35:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:36:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:37:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:38:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:39:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:40:1: warning: included header THn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:42:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:43:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:44:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:45:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:57:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:61:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:64:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:64:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:68:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:147:3: warning: no header providing "TRandom" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:149:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:151:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:166:80: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:187:77: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:203:70: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:238:78: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:342:59: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:342:114: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:344:62: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:344:117: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:346:66: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:362:28: warning: no header providing "BIT" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:395:32: warning: conversion of 'TrackFlagsRun2Enum' into 'bool' will always return 'true', enum doesn't have a zero-value enumerator [bugprone-non-zero-enum-to-bool-conversion] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:395:49: warning: no header providing "o2::aod::track::ITSrefit" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:395:63: warning: conversion of 'TrackFlagsRun2Enum' into 'bool' will always return 'true', enum doesn't have a zero-value enumerator [bugprone-non-zero-enum-to-bool-conversion] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:395:80: warning: no header providing "o2::aod::track::TPCrefit" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:600:62: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:808:30: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:819:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:904:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892analysispbpb.cxx:952:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/k892hadronphoton.cxx` ```text PWGLF/Tasks/Resonances/k892hadronphoton.cxx:25:1: warning: included header LFStrangenessPIDTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:29:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:30:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:31:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:32:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:33:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:34:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:38:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:42:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:44:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:45:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:46:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:47:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:48:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:50:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:61:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:65:19: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:76:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:77:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:85:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:85:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:88:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:93:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:202:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:202:54: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:236:73: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:244:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:257:56: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:260:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:260:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:289:92: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:316:61: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:401:100: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:416:20: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:433:18: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:464:83: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:469:88: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:474:84: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:484:91: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:489:94: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:494:95: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:499:95: warning: no header providing "o2::aod::evsel::kIsVertexTRDmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:504:91: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:509:97: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:514:100: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStrict" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:519:100: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeNarrow" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:524:91: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:529:94: warning: no header providing "o2::aod::evsel::kNoCollInRofStrict" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:804:27: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:850:70: warning: no header providing "TMath::Tan" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:850:85: warning: no header providing "TMath::ATan" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:850:97: warning: no header providing "TMath::Exp" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:934:82: warning: no header providing "TMath::ACos" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:1158:66: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892hadronphoton.cxx:1264:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/k892pmanalysis.cxx` ```text PWGLF/Tasks/Resonances/k892pmanalysis.cxx:20:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:21:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:24:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:25:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:38:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:39:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:40:17: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:40:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:41:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:41:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:45:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:45:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:51:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:98:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:100:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:117:85: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:118:86: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:126:63: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:165:100: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:270:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:435:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:438:28: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:485:30: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:485:66: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/k892pmanalysis.cxx:491:5: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx` ```text PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:21:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:22:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:35:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:37:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:40:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:41:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:44:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:45:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:46:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:47:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:48:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:49:1: warning: included header THn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:51:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:52:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:66:8: warning: constructor does not initialize these fields: theta2 [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:67:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:68:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:73:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:76:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:114:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:133:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:136:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:146:14: warning: no header providing "std::accumulate" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:164:74: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:176:74: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:198:64: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:216:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:217:15: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:226:64: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:226:124: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:273:12: warning: variable 'pt1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:273:17: warning: variable 'pt2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:273:22: warning: variable 'pz1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:273:27: warning: variable 'pz2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:273:32: warning: variable 'p1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:273:36: warning: variable 'p2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:273:40: warning: variable 'angle' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:302:57: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:388:65: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:442:11: warning: variable 'multiplicity' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:497:41: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:500:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:507:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:576:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:586:51: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:707:24: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/kshortlambda.cxx` ```text PWGLF/Tasks/Resonances/kshortlambda.cxx:18:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:19:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:30:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:31:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:33:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:36:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:37:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:40:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:41:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:42:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:43:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:46:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:47:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:48:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:64:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:64:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:68:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:118:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:118:42: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:161:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:164:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:176:14: warning: no header providing "std::accumulate" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:195:58: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:197:78: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:208:64: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:211:48: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:217:100: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:283:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:285:64: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:285:124: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:295:68: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:300:65: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:305:66: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:334:126: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:425:86: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:505:47: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:506:43: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:507:43: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:525:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:528:15: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:655:61: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:684:67: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:705:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:708:38: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:709:34: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kshortlambda.cxx:720:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/kstar892LightIon.cxx` ```text PWGLF/Tasks/Resonances/kstar892LightIon.cxx:17:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:18:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:26:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:27:1: warning: included header CcdbApi.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:33:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:35:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:37:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:38:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:39:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:40:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:41:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:42:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:43:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:44:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:46:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:47:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:50:1: warning: included header memory is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:58:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:58:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:61:8: warning: constructor does not initialize these fields: theta2 [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:65:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:71:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:72:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:77:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:168:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:203:3: warning: no header providing "TRandom" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:205:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:209:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:217:49: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:221:65: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:225:7: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:239:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:245:82: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:258:70: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:334:33: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:338:65: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:339:102: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:380:85: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:385:86: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:390:78: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:395:86: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:400:88: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:405:98: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:420:83: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:425:84: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:431:84: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:474:49: warning: conversion of 'TrackFlagsRun2Enum' into 'bool' will always return 'true', enum doesn't have a zero-value enumerator [bugprone-non-zero-enum-to-bool-conversion] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:474:66: warning: no header providing "o2::aod::track::ITSrefit" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:474:80: warning: conversion of 'TrackFlagsRun2Enum' into 'bool' will always return 'true', enum doesn't have a zero-value enumerator [bugprone-non-zero-enum-to-bool-conversion] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:474:97: warning: no header providing "o2::aod::track::TPCrefit" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:510:12: warning: variable 'pt1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:510:17: warning: variable 'pt2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:510:22: warning: variable 'pz1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:510:27: warning: variable 'pz2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:510:32: warning: variable 'p1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:510:36: warning: variable 'p2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:510:40: warning: variable 'angle' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:517:18: warning: no header providing "std::acos" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:703:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:715:53: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:717:73: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:717:109: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:904:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:1048:27: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:1058:3: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:1211:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:1250:51: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892LightIon.cxx:1515:83: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/kstar892analysis.cxx` ```text PWGLF/Tasks/Resonances/kstar892analysis.cxx:22:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:23:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:26:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:31:1: warning: included header TF1.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:44:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:44:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:48:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:48:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:53:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:110:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:115:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:127:69: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:145:77: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:161:73: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:182:78: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:243:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:244:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:245:17: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:245:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:248:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:248:29: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:249:43: warning: no header providing "o2::aod::track::dcaXY" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:249:91: warning: no header providing "o2::aod::track::dcaZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:254:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:285:18: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:413:11: warning: variable 'NsigmaTOF' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstar892analysis.cxx:414:11: warning: variable 'NsigmaTPC' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstar892analysis.cxx:446:11: warning: variable 'NsigmaTOF' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstar892analysis.cxx:447:11: warning: variable 'NsigmaTPC' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstar892analysis.cxx:489:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:587:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Resonances/kstar892analysis.cxx:587:11: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:679:30: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:690:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:735:43: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Resonances/kstar892analysis.cxx:748:43: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Resonances/kstar892analysis.cxx:761:43: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Resonances/kstar892analysis.cxx:774:43: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Resonances/kstar892analysis.cxx:784:99: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:791:41: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Resonances/kstar892analysis.cxx:802:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:874:30: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:874:66: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstar892analysis.cxx:879:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/kstarFlowv1.cxx` ```text PWGLF/Tasks/Resonances/kstarFlowv1.cxx:17:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:18:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:19:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:20:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:21:1: warning: included header THn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:22:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:23:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:24:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:25:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:32:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:33:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:34:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:44:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:45:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:46:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:50:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:51:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:53:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:55:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:56:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:57:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:58:1: warning: included header TF1.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:59:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:68:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:70:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:72:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:76:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:97:75: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:106:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:106:54: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:120:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:123:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:125:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:127:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:129:52: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:251:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:255:98: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:255:158: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:255:219: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:255:279: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarFlowv1.cxx:351:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/kstarInOO.cxx` ```text PWGLF/Tasks/Resonances/kstarInOO.cxx:23:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarInOO.cxx:28:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarInOO.cxx:38:1: warning: included header EMCALClusters.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarInOO.cxx:41:1: warning: included header TrackJetQa.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarInOO.cxx:43:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarInOO.cxx:47:1: warning: included header TMathBase.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarInOO.cxx:50:1: warning: included header RtypesCore.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarInOO.cxx:53:1: warning: included header chrono is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarInOO.cxx:68:8: warning: Excessive padding in 'struct kstarInOO' (32 padding bytes, where 0 is optimal). Optimal fields order: cache, massKa, massPi, eventSelectionBits, RealTriggerMaskBits, triggerMaskBitsTest1, triggerMaskBitsTest2, triggerMaskBitsTest3, JEPosZFilter, JEMCPosZFilter, jetCuts, cfgEventVtxCut, cfgOccupancySel, cfgOccupancyMax, cfgOccupancyMin, cfgTrackMinPt, cfgTrackMaxEta, cfgTrackMaxDCArToPVcut, cfgTrackMaxDCAzToPVcut, cfgTrackGlobalSel, cfgTrackPrimaryTrack, cfgTrackConnectedToPV, cfgTrackGlobalWoDCATrack, cfgTrackFindableTPCClusters, cfgTrackTPCCrossedRows, cfgTrackRowsOverFindable, cfgTrackTPCChi2, cfgTrackITSChi2, cfgTrackTPCPID, cfgTrackTOFPID, cfgTrackSquarePIDCut, cfgTrackCirclePIDCut, cfgTrackCircleValue, cfgTrackTOFHard, cfgTrackTPCPIDnSig, cfgTrackTOFPIDnSig, cDebugLevel, cfgMixNMixedEvents, cfgVtxMixCut, cfgForceGenReco, cfgReqMcEffPID, cfgMinvNBins, cfgMinvMin, cfgMinvMax, cfgEventCutQA, cfgTrackCutQA, cfgJetQAHistos, cfgDataHistos, cfgMcHistos, cfgJetDataHistos, cfgJetMCHistos, cfgCutonTrig, cfgJetpT, cfgJetR, cfgSingleJet, cfgReqJets, cfgCentAxis, cfgBinsMixMult, cfgBinsMixVtx, binsDCAz, binsDCAxy, kaon, pion, kaonMC, pionMC, doprocessDataJets, doprocessMCJets, doprocessEff, doprocessDataSameEvent, doprocessDataMixedEvent, doprocessSameEventMC, doprocessMixedEventMC, doprocessMCTrue, doprocessEventsDummy, cfgEventSelections, cfgRealTriggerMasks, cfgTriggerMasksTest1, cfgTriggerMasksTest2, cfgTriggerMasksTest3, perCollision, histos, nJetEvents, nJetMCEvents, nprocessEffiEvents, nEvents, nEventsMix, nEventsMC, nEventsMCMix, nEventsTrue, consider reordering the fields or adding explicit padding members [clang-analyzer-optin.performance.Padding] PWGLF/Tasks/Resonances/kstarInOO.cxx:313:21: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarInOO.cxx:317:7: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarInOO.cxx:361:23: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarInOO.cxx:363:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarInOO.cxx:471:42: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarInOO.cxx:473:42: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarInOO.cxx:475:42: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarInOO.cxx:477:42: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarInOO.cxx:479:42: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarInOO.cxx:481:46: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarInOO.cxx:662:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarInOO.cxx:797:14: warning: variable 'track1_mass' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstarInOO.cxx:797:27: warning: variable 'track2_mass' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstarInOO.cxx:1096:14: warning: variable 'track1_mass' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstarInOO.cxx:1096:27: warning: variable 'track2_mass' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstarInOO.cxx:1599:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/kstarpbpb.cxx` ```text PWGLF/Tasks/Resonances/kstarpbpb.cxx:14:1: warning: included header Index.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:16:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:17:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:21:1: warning: included header PIDResponseITS.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:29:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:30:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:35:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:37:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:40:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:41:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:43:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:44:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:45:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:46:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:47:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:49:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:51:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:52:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:63:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Resonances/kstarpbpb.cxx:65:8: warning: constructor does not initialize these fields: ccdb, v2, v2Rot, hweight [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/kstarpbpb.cxx:67:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:68:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:69:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:69:74: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:69:101: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:69:128: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:73:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:82:5: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:115:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:118:52: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:168:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:177:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:185:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:189:46: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:192:74: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:220:48: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:247:60: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:308:29: warning: no header providing "kTVXinTRD" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:505:40: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:506:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:507:15: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:521:98: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:521:158: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:521:219: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:521:279: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:521:343: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:542:72: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:736:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarpbpb.cxx:1133:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/kstarqa.cxx` ```text PWGLF/Tasks/Resonances/kstarqa.cxx:18:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:22:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:23:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:31:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:32:1: warning: included header CcdbApi.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:38:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:40:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:43:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:44:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:46:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:47:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:48:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:49:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:51:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:52:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:64:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:67:8: warning: constructor does not initialize these fields: pvec0, pvec1, theta2, pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/kstarqa.cxx:71:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:72:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:77:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:185:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:212:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:230:3: warning: no header providing "TRandom" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:232:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:236:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:245:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:246:69: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:248:65: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:255:7: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:270:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:282:84: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:285:80: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:316:67: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:377:38: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:383:70: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:384:109: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:391:73: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:462:85: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:467:86: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:472:86: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:477:88: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:482:98: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:497:78: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:502:83: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:513:84: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:519:84: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:565:46: warning: conversion of 'TrackFlagsRun2Enum' into 'bool' will always return 'true', enum doesn't have a zero-value enumerator [bugprone-non-zero-enum-to-bool-conversion] PWGLF/Tasks/Resonances/kstarqa.cxx:565:63: warning: no header providing "o2::aod::track::ITSrefit" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:565:77: warning: conversion of 'TrackFlagsRun2Enum' into 'bool' will always return 'true', enum doesn't have a zero-value enumerator [bugprone-non-zero-enum-to-bool-conversion] PWGLF/Tasks/Resonances/kstarqa.cxx:565:94: warning: no header providing "o2::aod::track::TPCrefit" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:615:12: warning: variable 'pt1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstarqa.cxx:615:17: warning: variable 'pt2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstarqa.cxx:615:22: warning: variable 'pz1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstarqa.cxx:615:27: warning: variable 'pz2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstarqa.cxx:615:32: warning: variable 'p1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstarqa.cxx:615:36: warning: variable 'p2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstarqa.cxx:615:40: warning: variable 'angle' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/kstarqa.cxx:622:18: warning: no header providing "std::acos" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:882:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:911:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:912:15: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:933:55: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:935:75: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:935:111: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:1023:63: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:1026:46: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:1026:70: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:1158:47: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:1225:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:1232:27: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:1252:3: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:1641:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:1641:26: warning: no header providing "o2::framework::O2DatabasePDG" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:1660:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/kstarqa.cxx:1717:51: warning: no header providing "std::find" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/lambda1405analysis.cxx` ```text PWGLF/Tasks/Resonances/lambda1405analysis.cxx:19:1: warning: included header PIDTOF.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:26:1: warning: included header PID.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:32:25: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:32:35: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:32:50: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:32:68: warning: no header providing "o2::aod::TracksCovIU" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:33:39: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:34:58: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:43:34: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:73:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:76:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:76:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:79:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:96:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:96:54: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:99:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:102:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:110:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:139:28: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:142:23: warning: no header providing "std::inner_product" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:143:23: warning: no header providing "std::inner_product" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:211:24: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:219:97: warning: no header providing "o2::constants::physics::MassSigmaPlus" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:220:98: warning: no header providing "o2::constants::physics::MassSigmaMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:224:27: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:247:23: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:247:140: warning: no header providing "o2::constants::physics::MassPiPlus" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:248:109: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:291:127: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:344:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1405analysis.cxx:346:92: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx` ```text PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:19:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:20:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:39:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:40:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:41:17: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:41:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:44:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:85:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:85:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:90:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:90:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:92:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:96:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:102:56: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:115:62: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:117:76: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:153:71: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:160:67: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:345:5: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:366:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:521:25: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:543:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:560:24: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:576:36: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:576:84: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:611:11: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:613:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:639:24: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:639:60: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520SpherocityAnalysis.cxx:649:7: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/lambda1520_PbPb.cxx` ```text PWGLF/Tasks/Resonances/lambda1520_PbPb.cxx:20:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520_PbPb.cxx:21:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520_PbPb.cxx:48:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520_PbPb.cxx:91:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520_PbPb.cxx:106:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520_PbPb.cxx:111:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520_PbPb.cxx:113:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520_PbPb.cxx:384:23: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520_PbPb.cxx:413:33: warning: no header providing "TMath::ACos" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520_PbPb.cxx:470:12: warning: declaration uses identifier '_M', which is a reserved identifier [bugprone-reserved-identifier] PWGLF/Tasks/Resonances/lambda1520_PbPb.cxx:475:9: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520_PbPb.cxx:553:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520_PbPb.cxx:588:11: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520_PbPb.cxx:590:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Resonances/lambda1520_PbPb.cxx:618:24: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520_PbPb.cxx:628:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/lambda1520analysis.cxx` ```text PWGLF/Tasks/Resonances/lambda1520analysis.cxx:18:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:31:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:32:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:33:17: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:33:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:35:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:35:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:37:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:41:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:82:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:114:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:114:46: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:152:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:155:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:169:69: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:205:78: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:207:75: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:266:107: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:310:92: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:713:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:736:50: warning: no header providing "o2::soa::CombinationsFullIndexPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:767:51: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:767:79: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:865:9: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:1030:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:1089:30: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:1089:66: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysis.cxx:1094:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx` ```text PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:37:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:49:47: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:70:8: warning: constructor does not initialize these fields: pdg, centrality [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:72:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:73:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:73:12: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:73:51: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:74:12: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:74:63: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:76:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:78:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:83:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:129:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:152:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:152:46: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:194:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:194:27: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:194:44: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:196:32: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:196:42: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:196:59: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:197:32: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:197:56: warning: no header providing "o2::aod::FullTracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:199:61: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:200:75: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:217:24: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:234:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:255:70: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:298:76: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:375:60: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:409:18: warning: no header providing "o2::constants::physics::MassKaonCharged" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:410:18: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:523:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:682:50: warning: no header providing "o2::soa::CombinationsFullIndexPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:713:47: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:713:71: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:996:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:999:23: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:1011:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:1011:76: warning: no header providing "o2::aod::mcparticle::pdgCode" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:1017:61: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:1143:30: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:1143:61: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:1150:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx` ```text PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:29:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:43:47: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:78:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:80:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:81:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:81:12: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:81:51: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:82:12: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:82:63: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:84:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:86:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:91:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:92:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:159:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:159:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:201:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:201:24: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:201:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:202:53: warning: no header providing "o2::aod::mccollision::posZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:206:47: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:206:97: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:220:32: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:220:42: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:220:59: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:221:32: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:221:56: warning: no header providing "o2::aod::FullTracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:222:61: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:223:75: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:238:24: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:253:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:274:84: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:312:76: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:397:60: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:406:92: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:431:18: warning: no header providing "o2::constants::physics::MassKaonCharged" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:432:18: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:522:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:685:50: warning: no header providing "o2::soa::CombinationsFullIndexPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:717:53: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:717:81: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:815:28: warning: no header providing "std::acos" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:966:46: warning: no header providing "o2::constants::physics::Pdg" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:1046:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:1058:23: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:1070:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:1070:76: warning: no header providing "o2::aod::mcparticle::pdgCode" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:1076:61: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:1112:20: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:1204:30: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:1204:61: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambda1520analysisinpp.cxx:1212:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/lambdav2.cxx` ```text PWGLF/Tasks/Resonances/lambdav2.cxx:14:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:15:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:16:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:17:1: warning: included header TF1.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:18:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:19:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:20:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:21:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:22:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:23:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:24:1: warning: included header THn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:25:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:27:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:28:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:38:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:39:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:42:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:50:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:51:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:52:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:57:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:59:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:64:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Resonances/lambdav2.cxx:66:8: warning: constructor does not initialize these fields: mRunNumber, multEstimator, d_bz, ccdb, pdg [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/lambdav2.cxx:71:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:75:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:139:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:139:54: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:146:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:148:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:150:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:168:60: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:194:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:259:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:261:15: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:291:66: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:291:126: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:300:67: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:300:127: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lambdav2.cxx:390:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/lstarpbpbv2.cxx` ```text PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:16:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:17:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:28:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:29:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:30:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:35:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:37:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:39:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:40:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:41:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:42:1: warning: included header TF1.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:43:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:44:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:45:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:46:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:47:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:48:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:49:1: warning: included header THn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:50:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:52:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:53:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:64:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:65:8: warning: constructor does not initialize these fields: ccdb, pdg [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:67:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:71:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:103:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:103:54: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:116:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:118:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:120:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:122:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:124:48: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:412:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:416:98: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:416:158: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:416:219: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:416:279: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:452:68: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:526:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/omega2012Analysis.cxx` ```text PWGLF/Tasks/Resonances/omega2012Analysis.cxx:18:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:19:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:20:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:21:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:24:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:28:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:44:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:45:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:49:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:49:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:52:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:52:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:57:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:128:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:140:40: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:140:76: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:143:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:145:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:161:57: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:163:62: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:222:74: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:304:20: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:350:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:488:17: warning: no header providing "ROOT::Math::PxPyPzEVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:489:49: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:578:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:698:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:714:5: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:747:23: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:809:38: warning: no header providing "kXiMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/omega2012Analysis.cxx:809:66: warning: no header providing "kK0Short" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx` ```text PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:19:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:20:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:44:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:45:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:46:17: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:46:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:49:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:76:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:76:46: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:81:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:81:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:83:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:85:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:100:62: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:102:76: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:121:77: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:127:62: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:230:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:304:37: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:304:61: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:338:59: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:354:25: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:374:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:416:36: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:416:84: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:440:24: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:440:60: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phi1020SpherocityAnalysis.cxx:449:7: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/phiOO.cxx` ```text PWGLF/Tasks/Resonances/phiOO.cxx:27:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phiOO.cxx:32:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phiOO.cxx:40:1: warning: included header TRandom.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phiOO.cxx:42:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phiOO.cxx:43:1: warning: included header TMathBase.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phiOO.cxx:44:1: warning: included header TVector2.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phiOO.cxx:46:1: warning: included header RtypesCore.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phiOO.cxx:48:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phiOO.cxx:49:1: warning: included header chrono is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phiOO.cxx:51:1: warning: included header cstddef is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phiOO.cxx:211:30: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phiOO.cxx:213:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phiOO.cxx:297:66: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phiOO.cxx:297:122: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phiOO.cxx:299:70: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phiOO.cxx:301:63: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phiOO.cxx:301:119: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phiOO.cxx:540:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/phianalysis.cxx` ```text PWGLF/Tasks/Resonances/phianalysis.cxx:20:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:21:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:24:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:38:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:39:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:40:17: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:40:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:41:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:41:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:45:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:45:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:48:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:80:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:82:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:91:71: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:95:84: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:112:73: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:121:62: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:207:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:241:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Resonances/phianalysis.cxx:241:11: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:292:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:295:28: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:307:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Resonances/phianalysis.cxx:319:30: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:319:66: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysis.cxx:324:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx` ```text PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:31:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:41:8: warning: constructor does not initialize these fields: pdg, produceTrue, produceLikesign, produceQA, produceStats, produceRotational, dataQA, MCTruthQA, globalTrack, inelGrater0 [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:43:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:45:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:46:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:86:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:97:27: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:97:63: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:117:3: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:124:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:127:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:137:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:148:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:149:23: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:149:48: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:151:32: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:151:42: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:153:42: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:153:55: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:155:61: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:156:61: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:159:43: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:161:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:161:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:163:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:163:54: warning: no header providing "o2::aod::track::signed1Pt" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:169:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:187:47: warning: no header providing "fmt::format" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:262:72: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:263:34: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:263:39: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:271:73: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:299:129: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:303:105: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:304:36: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:308:118: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:454:60: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:460:62: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:461:101: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:718:71: warning: no header providing "TMath::DegToRad" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:720:45: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:720:77: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:812:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:814:104: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:969:71: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:1046:26: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:1054:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/phianalysisrun3.cxx` ```text PWGLF/Tasks/Resonances/phianalysisrun3.cxx:19:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:20:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:33:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:35:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:37:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:38:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:39:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:40:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:41:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:42:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:43:1: warning: included header THn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:44:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:46:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:47:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:57:8: warning: constructor does not initialize these fields: rapidity, genMass, recMass, resolution, pvec0, pvec1, pvec1rotation [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:59:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:61:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:85:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:87:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:96:87: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:158:12: warning: variable 'pt1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:158:17: warning: variable 'pt2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:158:22: warning: variable 'pz1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:158:27: warning: variable 'pz2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:158:32: warning: variable 'p1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:158:36: warning: variable 'p2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:158:40: warning: variable 'angle' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:181:12: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:242:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:250:40: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:261:64: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:261:124: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:264:11: warning: variable 'multiplicity' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:307:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:313:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:324:13: warning: variable 'multiplicity' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:372:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:372:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3.cxx:381:51: warning: no header providing "std::find" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx` ```text PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:15:1: warning: included header EPCalibrationTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:17:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:18:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:26:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:28:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:29:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:34:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:35:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:37:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:39:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:40:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:41:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:43:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:44:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:45:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:46:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:47:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:48:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:50:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:51:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:52:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:67:8: warning: constructor does not initialize these fields: rapidity, genMass, recMass, resolution, pvec0, pvec1, pvec1rotation [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:68:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:69:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:74:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:75:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:121:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:125:52: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:139:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:142:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:148:60: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:152:87: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:156:57: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:157:58: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:260:38: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:264:64: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:265:103: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:306:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:382:82: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:385:82: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:388:82: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:391:86: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:393:86: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:395:86: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:432:12: warning: variable 'pt1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:432:17: warning: variable 'pt2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:432:22: warning: variable 'pz1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:432:27: warning: variable 'pz2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:432:32: warning: variable 'p1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:432:36: warning: variable 'p2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:432:40: warning: variable 'angle' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:454:12: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:506:41: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:663:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:669:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:709:13: warning: variable 'multiplicity' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:780:13: warning: variable 'multiplicity' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:852:13: warning: variable 'multiplicity' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:924:13: warning: variable 'multiplicity' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:1259:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:1288:51: warning: no header providing "std::find" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/phipbpb.cxx` ```text PWGLF/Tasks/Resonances/phipbpb.cxx:18:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:19:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:31:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:32:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:38:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:40:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:43:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:44:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:46:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:47:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:48:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:49:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:51:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:52:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:56:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:57:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:68:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Resonances/phipbpb.cxx:69:8: warning: constructor does not initialize these fields: mRunNumber, multEstimator, d_bz, ccdb, pdg, hweight [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/phipbpb.cxx:75:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:76:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:77:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:77:74: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:77:101: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:77:128: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:81:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:128:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:138:58: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:168:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:171:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:180:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:184:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:203:54: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:231:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:241:63: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:242:53: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:393:29: warning: no header providing "kTVXinTRD" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:464:12: warning: variable 'pt1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phipbpb.cxx:464:17: warning: variable 'pt2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phipbpb.cxx:464:22: warning: variable 'pz1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phipbpb.cxx:464:27: warning: variable 'pz2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phipbpb.cxx:464:32: warning: variable 'p1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phipbpb.cxx:464:36: warning: variable 'p2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phipbpb.cxx:464:40: warning: variable 'angle' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phipbpb.cxx:512:45: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:537:40: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:540:15: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:550:98: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:574:69: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:577:72: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:651:84: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:795:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:827:12: warning: variable 'modqxZDCA' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phipbpb.cxx:828:12: warning: variable 'modqyZDCA' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phipbpb.cxx:829:12: warning: variable 'modqxZDCC' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phipbpb.cxx:830:12: warning: variable 'modqyZDCC' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phipbpb.cxx:1089:14: warning: variable 'modqxZDCA' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phipbpb.cxx:1090:14: warning: variable 'modqyZDCA' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phipbpb.cxx:1091:14: warning: variable 'modqxZDCC' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phipbpb.cxx:1092:14: warning: variable 'modqyZDCC' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phipbpb.cxx:1190:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:1351:14: warning: variable 'modqxZDCA' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phipbpb.cxx:1352:14: warning: variable 'modqyZDCA' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phipbpb.cxx:1353:14: warning: variable 'modqxZDCC' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phipbpb.cxx:1354:14: warning: variable 'modqyZDCC' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phipbpb.cxx:1452:51: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phipbpb.cxx:1452:114: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx` ```text PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:14:1: warning: included header Index.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:16:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:17:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:29:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:33:1: warning: included header ConfigParamSpec.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:36:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:38:1: warning: included header DCA.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:39:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:40:1: warning: included header V0.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:42:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:43:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:44:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:45:1: warning: included header TF1.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:46:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:47:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:48:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:49:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:50:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:51:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:53:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:55:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:56:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:67:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:69:8: warning: constructor does not initialize these fields: ccdb, pdg, hTPCCallib, hTOFCallib [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:73:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:76:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:77:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:78:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:78:74: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:78:101: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:78:128: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:97:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:124:52: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:153:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:156:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:157:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:161:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:164:36: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:171:50: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:180:42: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:183:46: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:202:24: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:232:39: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:301:12: warning: variable 'pt1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:301:17: warning: variable 'pt2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:301:22: warning: variable 'pz1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:301:27: warning: variable 'pz2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:301:32: warning: variable 'p1' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:301:36: warning: variable 'p2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:301:40: warning: variable 'angle' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:335:40: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:336:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:342:67: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:342:127: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:342:188: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:342:248: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:342:312: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:352:71: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:352:136: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeNarrow" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:501:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:507:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:615:67: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:623:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:738:34: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/phitutorial.cxx` ```text PWGLF/Tasks/Resonances/phitutorial.cxx:26:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial.cxx:31:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial.cxx:49:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial.cxx:49:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial.cxx:54:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial.cxx:56:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial.cxx:59:36: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial.cxx:72:43: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial.cxx:84:42: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial.cxx:86:42: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial.cxx:88:42: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial.cxx:146:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial.cxx:157:19: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial.cxx:171:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial.cxx:182:32: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial.cxx:183:23: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial.cxx:185:3: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/phitutorial_step0.cxx` ```text PWGLF/Tasks/Resonances/phitutorial_step0.cxx:26:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step0.cxx:27:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step0.cxx:31:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step0.cxx:49:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step0.cxx:49:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step0.cxx:54:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step0.cxx:56:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step0.cxx:59:36: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step0.cxx:68:43: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step0.cxx:119:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step0.cxx:126:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/phitutorial_step1.cxx` ```text PWGLF/Tasks/Resonances/phitutorial_step1.cxx:26:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step1.cxx:31:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step1.cxx:49:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step1.cxx:49:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step1.cxx:54:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step1.cxx:56:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step1.cxx:59:36: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step1.cxx:69:43: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step1.cxx:115:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step1.cxx:120:19: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step1.cxx:132:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/phitutorial_step2.cxx` ```text PWGLF/Tasks/Resonances/phitutorial_step2.cxx:26:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step2.cxx:31:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step2.cxx:49:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step2.cxx:49:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step2.cxx:54:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step2.cxx:56:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step2.cxx:59:36: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step2.cxx:69:43: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step2.cxx:134:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step2.cxx:141:19: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step2.cxx:153:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/phitutorial_step3.cxx` ```text PWGLF/Tasks/Resonances/phitutorial_step3.cxx:26:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step3.cxx:31:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step3.cxx:49:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step3.cxx:49:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step3.cxx:54:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step3.cxx:56:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step3.cxx:59:36: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step3.cxx:73:43: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step3.cxx:149:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step3.cxx:160:19: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step3.cxx:172:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step3.cxx:184:32: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step3.cxx:185:23: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/phitutorial_step3.cxx:187:3: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/rho770analysis.cxx` ```text PWGLF/Tasks/Resonances/rho770analysis.cxx:19:1: warning: included header inelGt.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:21:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:22:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:23:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:24:1: warning: included header PIDResponseTOF.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:25:1: warning: included header PIDResponseTPC.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:28:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:31:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:35:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:42:48: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:43:48: warning: no header providing "ROOT::Math::PxPyPzEVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:53:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:54:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:54:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:56:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:96:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:99:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:101:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:105:64: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:237:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:275:45: warning: no header providing "kPiPlus" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:276:49: warning: no header providing "kRho770_0" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:280:56: warning: no header providing "kK0Short" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:284:92: warning: no header providing "kKPlus" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:342:70: warning: no header providing "o2::aod::PVMults" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:344:38: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rho770analysis.cxx:346:11: warning: variable 'multiplicity' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/rho770analysis.cxx:371:11: warning: variable 'multiplicity' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGLF/Tasks/Resonances/rhoanalysis.cxx` ```text PWGLF/Tasks/Resonances/rhoanalysis.cxx:31:1: warning: included header DataProcessorSpec.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/rhoanalysis.cxx:43:8: warning: constructor does not initialize these fields: pvec0, pvec1, rapidity, Ipdg [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Resonances/rhoanalysis.cxx:45:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rhoanalysis.cxx:45:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rhoanalysis.cxx:47:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rhoanalysis.cxx:63:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rhoanalysis.cxx:65:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rhoanalysis.cxx:76:51: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rhoanalysis.cxx:85:98: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rhoanalysis.cxx:89:57: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rhoanalysis.cxx:143:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rhoanalysis.cxx:170:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rhoanalysis.cxx:229:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rhoanalysis.cxx:255:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rhoanalysis.cxx:255:46: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rhoanalysis.cxx:259:23: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rhoanalysis.cxx:265:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rhoanalysis.cxx:304:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Resonances/rhoanalysis.cxx:304:11: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rhoanalysis.cxx:308:13: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ``` #### `PWGLF/Tasks/Resonances/rsnanalysis.cxx` ```text PWGLF/Tasks/Resonances/rsnanalysis.cxx:22:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:36:31: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:36:41: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:37:37: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:37:50: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:40:73: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:43:81: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:50:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:72:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:75:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:78:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:87:21: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:114:21: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:308:22: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:318:11: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:325:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:325:28: warning: no header providing "Float_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:362:5: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:380:13: warning: no header providing "fabs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:536:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:541:23: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:698:13: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:717:28: warning: no header providing "o2::aod::McCollision" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:729:11: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:775:5: warning: no header providing "Bool_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/rsnanalysis.cxx:776:5: warning: no header providing "Double_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/sigma.cxx` ```text PWGLF/Tasks/Resonances/sigma.cxx:16:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:17:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:25:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:26:1: warning: included header CcdbApi.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:32:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:34:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:36:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:37:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:38:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:39:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:40:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:41:1: warning: included header THn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:43:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:44:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:45:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:55:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Resonances/sigma.cxx:59:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:63:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:98:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:101:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:109:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:110:61: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:137:15: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:247:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:259:38: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:261:40: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:264:3: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:273:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:274:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:348:24: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:360:22: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/sigma.cxx:369:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/xi1530Analysis.cxx` ```text PWGLF/Tasks/Resonances/xi1530Analysis.cxx:17:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysis.cxx:20:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysis.cxx:21:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysis.cxx:29:1: warning: included header TRandom.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysis.cxx:40:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysis.cxx:41:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysis.cxx:42:17: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysis.cxx:42:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysis.cxx:45:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysis.cxx:73:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysis.cxx:73:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysis.cxx:75:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysis.cxx:77:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysis.cxx:93:56: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysis.cxx:99:62: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysis.cxx:102:52: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysis.cxx:132:65: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysis.cxx:133:62: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysis.cxx:234:5: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysis.cxx:255:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx` ```text PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:18:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:20:1: warning: included header inelGt.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:22:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:23:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:24:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:32:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:34:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:41:47: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:42:1: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:60:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:61:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:62:17: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:62:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:67:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:67:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:69:27: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:70:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:73:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:73:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:233:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:235:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:250:69: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:270:82: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:341:76: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:404:80: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:614:11: warning: variable 'tpcNsigmaPionFirst' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:614:31: warning: variable 'tofNsigmaPionFirst' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:635:11: warning: variable 'tpcNsigmaBachelor' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:635:30: warning: variable 'tofNsigmaBachelor' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:636:11: warning: variable 'tpcNsigmaPion' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:636:26: warning: variable 'tofNsigmaPion' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:637:11: warning: variable 'tpcNsigmaProton' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:637:28: warning: variable 'tofNsigmaProton' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:681:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:958:43: warning: no header providing "kPiPlus" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:958:82: warning: no header providing "kXiMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:1056:35: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:1056:52: warning: no header providing "o2::aod::PVMults" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:1081:33: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:1083:11: warning: variable 'multiplicity' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:1130:11: warning: variable 'multiplicity' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:1230:30: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:1230:66: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:1240:5: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx:1284:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Resonances/xi1820Analysis.cxx` ```text PWGLF/Tasks/Resonances/xi1820Analysis.cxx:18:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:19:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:20:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:21:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:24:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:28:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:38:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:39:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:42:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:42:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:51:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:51:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:56:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:78:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:115:40: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:115:76: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:118:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:120:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:134:57: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:136:62: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:186:108: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:290:20: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:368:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:524:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:655:21: warning: no header providing "ROOT::Math::PxPyPzEVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:656:55: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:723:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:747:5: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] PWGLF/Tasks/Resonances/xi1820Analysis.cxx:993:33: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx` ```text PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:21:1: warning: included header ctpRateFetcher.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:24:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:25:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:26:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:27:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:28:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:30:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:35:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:37:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:39:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:40:1: warning: included header TH2D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:41:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:42:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:44:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:51:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:51:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:61:8: warning: constructor does not initialize these fields: ccdb, mRunNumber [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:65:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:66:10: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:67:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:75:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:76:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:76:21: warning: no header providing "o2::ccdb::BasicCCDBManager" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:80:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:80:54: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:133:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:134:60: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:150:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:158:20: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:158:47: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:159:22: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:163:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:175:77: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:176:24: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:176:29: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:188:24: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:319:68: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:591:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:606:76: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:610:72: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:614:77: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:618:82: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:622:83: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:626:83: warning: no header providing "o2::aod::evsel::kIsVertexTRDmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:630:79: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:875:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/cascadeanalysis.cxx` ```text PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:33:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:34:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:35:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:41:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:45:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:47:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:48:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:49:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:50:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:51:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:52:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:53:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:62:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:72:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:75:41: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:100:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:128:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:130:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:153:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:230:5: warning: no header providing "Bool_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:230:32: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:238:27: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:333:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysis.cxx:339:48: warning: no header providing "kINT7" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx` ```text PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:36:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:37:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:38:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:44:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:48:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:50:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:51:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:52:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:53:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:54:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:55:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:56:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:65:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:76:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:81:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:87:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:89:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:92:53: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:107:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:112:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:165:7: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:170:20: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:320:5: warning: no header providing "Bool_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:320:32: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:328:27: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:427:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadeanalysisMC.cxx:433:48: warning: no header providing "kINT7" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/cascadecorrelations.cxx` ```text PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:22:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:27:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:35:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:37:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:38:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:41:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:83:8: warning: constructor does not initialize these fields: ccdb, pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:84:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:87:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:90:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:128:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:138:3: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:140:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:144:35: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:180:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:185:27: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:261:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:283:76: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:331:7: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:416:59: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:463:123: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:466:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:515:7: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:552:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:602:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:607:8: warning: constructor does not initialize these fields: ccdb, hEffXiMin, hEffXiPlus, hEffOmegaMin, hEffOmegaPlus, pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:609:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:609:13: warning: no header providing "ZorroSummary" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:628:59: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:643:3: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:705:19: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:876:52: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:924:42: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:928:23: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:945:12: warning: variable 'weight' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/cascadecorrelations.cxx:1008:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/cascpolsp.cxx` ```text PWGLF/Tasks/Strangeness/cascpolsp.cxx:17:1: warning: included header cascqaanalysis.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:19:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:20:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:23:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:30:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:31:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:37:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:39:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:42:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:43:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:44:1: warning: included header TF1.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:45:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:46:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:47:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:48:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:49:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:50:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:51:1: warning: included header THn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:52:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:54:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:55:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:64:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Strangeness/cascpolsp.cxx:69:8: warning: constructor does not initialize these fields: ccdb, pdg [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/cascpolsp.cxx:71:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:75:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:131:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:131:54: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:138:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:140:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:142:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:145:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:146:34: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:294:39: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:348:15: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:373:66: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:373:126: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:377:67: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:377:127: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpolsp.cxx:441:11: warning: Value stored to 'tagb' during its initialization is never read [clang-analyzer-deadcode.DeadStores] PWGLF/Tasks/Strangeness/cascpolsp.cxx:457:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/cascpostprocessing.cxx` ```text PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:19:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:22:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:23:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:37:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:39:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:81:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:84:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:86:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:89:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:97:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:100:36: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:109:38: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:111:5: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:114:46: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:115:10: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:115:41: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:115:46: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:282:20: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:285:20: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:402:83: warning: no header providing "fabs" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:453:35: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:515:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx` ```text PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:16:1: warning: included header MetadataHelper.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:25:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:26:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:27:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:28:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:29:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:32:1: warning: included header LHCConstants.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:33:1: warning: included header Digit.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:34:1: warning: included header AggregatedRunInfo.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:35:1: warning: included header GRPECSObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:36:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:37:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:40:1: warning: included header ConfigParamSpec.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:45:1: warning: included header DPLAlpideParam.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:46:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:48:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:49:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:50:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:52:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:64:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:69:8: warning: constructor does not initialize these fields: ccdb, pdgDB, selectionCheckMask, selectionCheck [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:70:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:72:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:72:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:80:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:92:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:243:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:244:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:249:3: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:252:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:262:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:276:7: warning: no header providing "SETBIT" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:300:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:306:5: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:308:37: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:316:56: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:326:76: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:335:44: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:367:18: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:509:54: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:513:84: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:560:14: warning: variable 'ptdepCut' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:570:49: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:684:98: warning: no header providing "std::exp" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:854:57: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:864:60: warning: no header providing "o2::constants::physics::MassOmegaMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:957:59: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:1064:72: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:1068:11: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:1655:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx` ```text PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:37:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:38:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:39:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:40:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:41:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:42:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:43:1: warning: included header MlResponse.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:49:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:53:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:55:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:56:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:57:1: warning: included header TH2D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:58:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:96:8: warning: constructor does not initialize these fields: isRun3, ccdb, mRunNumber, magField, maskTopological, maskTopoNoV0Radius, maskTopoNoDCANegToPV, maskTopoNoDCAPosToPV, maskTopoNoCosPA, maskTopoNoDCAV0Dau, maskTrackProperties, maskK0ShortSpecific, maskLambdaSpecific, maskAntiLambdaSpecific, maskSelectionK0Short, maskSelectionLambda, maskSelectionAntiLambda, secondaryMaskSelectionLambda, secondaryMaskSelectionAntiLambda [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:97:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:97:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:102:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:128:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:193:18: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:242:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:263:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:293:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:294:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:294:21: warning: no header providing "o2::ccdb::BasicCCDBManager" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:303:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:303:40: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:372:20: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:436:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:602:54: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:604:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:604:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:654:56: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:658:20: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:775:54: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:815:86: warning: no header providing "o2::framework::kTHnD" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:1343:56: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:1394:28: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:1473:3: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:1483:45: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:1483:89: warning: no header providing "o2::aod::track::TRD" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:1483:111: warning: no header providing "o2::aod::track::TOF" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:1963:24: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2012:85: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2022:90: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2032:86: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2052:93: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2062:96: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2072:97: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2082:97: warning: no header providing "o2::aod::evsel::kIsVertexTRDmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2092:93: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2102:99: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2112:102: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStrict" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2122:102: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeNarrow" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2132:93: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2142:96: warning: no header providing "o2::aod::evsel::kNoCollInRofStrict" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2241:63: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2253:91: warning: no header providing "o2::aod::evsel::kNoIncompleteDAQ" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2265:103: warning: no header providing "o2::aod::evsel::kNoInconsistentVtx" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2271:91: warning: no header providing "o2::aod::evsel::kNoPileupFromSPD" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2277:88: warning: no header providing "o2::aod::evsel::kNoV0PFPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2283:94: warning: no header providing "o2::aod::evsel::kNoPileupInMultBins" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2289:86: warning: no header providing "o2::aod::evsel::kNoPileupMV" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2295:87: warning: no header providing "o2::aod::evsel::kNoPileupTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2301:97: warning: no header providing "o2::aod::evsel::kNoV0MOnVsOfPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2307:97: warning: no header providing "o2::aod::evsel::kNoSPDOnVsOfPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2313:94: warning: no header providing "o2::aod::evsel::kNoSPDClsVsTklBG" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx:2924:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx` ```text PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:22:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:23:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:24:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:25:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:26:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:28:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:31:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:32:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:34:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:36:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:37:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:39:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:53:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:78:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:78:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:81:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:92:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:113:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:141:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:208:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:234:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:299:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:301:49: warning: no header providing "std::initializer_list" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:313:18: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:313:63: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:313:86: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:314:70: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:315:64: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:315:88: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:316:66: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:317:67: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:318:65: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:319:61: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:320:62: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:321:68: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:322:63: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:323:67: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:324:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:326:71: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:327:75: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:330:64: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:330:88: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:331:64: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:332:66: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:333:67: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:334:59: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:335:62: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:336:75: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:337:75: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:338:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:346:66: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:346:94: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:347:66: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:348:66: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:349:66: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:351:77: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:352:77: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:354:77: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:355:77: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:357:75: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:358:75: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:360:75: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:361:75: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:364:69: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:365:69: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:366:80: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:367:80: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:368:78: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:369:78: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:377:66: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:378:66: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:379:77: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:380:77: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:381:75: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:382:75: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:384:69: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:385:80: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:386:78: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:394:62: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:395:62: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:396:59: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:398:65: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:408:80: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:408:118: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:410:80: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:412:81: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:413:81: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:414:82: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:418:80: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:420:80: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:422:81: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:423:81: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:424:82: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:431:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:432:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:475:5: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:481:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:484:99: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:496:99: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:508:99: warning: no header providing "o2::constants::physics::MassLambda0Bar" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:617:54: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:632:54: warning: no header providing "o2::constants::physics::MassXiPlusBar" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:648:54: warning: no header providing "o2::constants::physics::MassOmegaMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:664:54: warning: no header providing "o2::constants::physics::MassOmegaPlusBar" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:745:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:757:39: warning: no header providing "o2::aod::rctsel::kFV0Bad" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:896:62: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:897:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:916:72: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:937:18: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:963:67: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:965:71: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:970:64: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:1115:72: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:1117:75: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:1118:71: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:1119:78: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:1120:81: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:1121:82: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:1122:82: warning: no header providing "o2::aod::evsel::kIsVertexTRDmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:1123:78: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:1124:84: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:1125:87: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeNarrow" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:1162:28: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:1208:24: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:1208:46: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:1208:68: warning: no header providing "o2::aod::track::TRD" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:1208:90: warning: no header providing "o2::aod::track::TOF" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:1774:13: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:1852:13: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:1957:12: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:2017:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:2154:11: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:2344:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx` ```text PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:52:29: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:52:39: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:52:52: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:53:45: warning: no header providing "o2::aod::V0Indices" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:53:61: warning: no header providing "o2::aod::V0Cores" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:54:77: warning: no header providing "o2::aod::McV0Labels" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:56:8: warning: constructor does not initialize these fields: ccdb, pdgDB, hEfficiencyTrigger, hEfficiencyTriggerMult, hEfficiencyTriggerMultVsPhi, hEfficiencyPion, hEfficiencyK0Short, hEfficiencyK0ShortMultVsPhi, hEfficiencyLambda, hEfficiencyLambdaMultVsPhi, hEfficiencyAntiLambda, hEfficiencyAntiLambdaMultVsPhi, hEfficiencyXiMinus, hEfficiencyXiMinusMultVsPhi, hEfficiencyXiPlus, hEfficiencyXiPlusMultVsPhi, hEfficiencyOmegaMinus, hEfficiencyOmegaMinusMultVsPhi, hEfficiencyOmegaPlus, hEfficiencyOmegaPlusMultVsPhi, hEfficiencyHadron, hEfficiencyHadronMult, hPurityHadron, hPurityHadronMult, hEfficiencyUncertaintyTrigger, hEfficiencyUncertaintyTriggerMult, hEfficiencyUncertaintyPion, hEfficiencyUncertaintyK0Short, hEfficiencyUncertaintyLambda, hEfficiencyUncertaintyAntiLambda, hEfficiencyUncertaintyXiMinus, hEfficiencyUncertaintyXiPlus, hEfficiencyUncertaintyOmegaMinus, hEfficiencyUncertaintyOmegaPlus, hEfficiencyUncertaintyHadron, hEfficiencyUncertaintyHadronMult, hPurityUncertaintyHadron, hPurityUncertaintyHadronMult, doCorrelation, mRunNumber, mRunNumberZorro [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:58:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:62:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:62:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:68:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:114:44: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:116:49: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:118:57: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:233:3: warning: no header providing "TH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:234:3: warning: no header providing "TH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:235:3: warning: no header providing "THnF" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:253:3: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:271:25: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:271:61: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:275:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:280:17: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:280:62: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:282:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:296:3: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:302:15: warning: member 'ctauxi' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:303:15: warning: member 'ctauomega' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:319:30: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:325:23: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:348:5: warning: no header providing "TList" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:396:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:403:70: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:404:9: warning: no header providing "SETBIT" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:411:70: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:434:44: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:435:47: warning: no header providing "o2::constants::physics::MassOmegaMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:511:11: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:624:5: warning: Variable 'r' with floating point type 'double' should not be used as a loop counter [clang-analyzer-security.FloatLoopCounter] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:625:30: warning: no header providing "std::asin" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:631:34: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:631:45: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:638:28: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:638:72: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:642:49: warning: no header providing "THn" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:644:11: warning: variable 'previousContent' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:644:28: warning: variable 'previousError2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:644:44: warning: variable 'currentContent' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:644:60: warning: variable 'currentError2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:689:46: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:1254:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:1312:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:1322:42: warning: no header providing "o2::framework::kTH1C" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:1456:56: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:1457:7: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:1458:39: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:1464:68: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:1475:78: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:1483:72: warning: no header providing "o2::framework::kTHnF" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:1518:27: warning: no header providing "fmt::format" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:1659:46: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:1687:46: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:1706:50: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:1727:50: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:1735:50: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:1743:50: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:1772:15: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:1774:53: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:1888:10: warning: no header providing "std::variant" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:1908:12: warning: no header providing "std::visit" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:2020:68: warning: no header providing "o2::aod::CascDatas" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:2042:12: warning: no header providing "std::visit" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:2284:10: warning: no header providing "std::visit" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:2340:10: warning: no header providing "std::visit" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:2431:32: warning: no header providing "o2::aod::McCollision" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:2431:73: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:2431:100: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:2574:93: warning: no header providing "o2::constants::physics::Pdg" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:2781:15: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/hyperon-reco-test.cxx` ```text PWGLF/Tasks/Strangeness/hyperon-reco-test.cxx:14:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/hyperon-reco-test.cxx:15:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/hyperon-reco-test.cxx:16:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/hyperon-reco-test.cxx:19:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/hyperon-reco-test.cxx:22:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/hyperon-reco-test.cxx:27:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/hyperon-reco-test.cxx:29:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/hyperon-reco-test.cxx:30:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/hyperon-reco-test.cxx:31:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/hyperon-reco-test.cxx:32:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/hyperon-reco-test.cxx:45:26: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hyperon-reco-test.cxx:63:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hyperon-reco-test.cxx:101:16: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/hyperon-reco-test.cxx:104:89: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/k0_mixed_events.cxx` ```text PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:39:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:41:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:43:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:45:1: warning: included header TParameter.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:121:8: warning: constructor does not initialize these fields: IsIdentical, ccdb, pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:122:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:124:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:132:16: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:144:23: warning: declaration uses identifier '_PIDtrshld_1', which is a reserved identifier [bugprone-reserved-identifier] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:150:23: warning: declaration uses identifier '_PIDtrshld_2', which is a reserved identifier [bugprone-reserved-identifier] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:180:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:183:68: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:197:136: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:206:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:206:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:219:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:241:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:247:43: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:248:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:258:70: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:262:34: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:270:38: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:274:69: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:296:65: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:305:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:328:19: warning: no header providing "std::lround" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:340:10: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:349:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:456:62: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:468:69: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:474:70: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:480:68: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:486:67: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:492:69: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:523:14: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:552:69: warning: no header providing "o2::aod::singletrackselector::TPCselection" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:552:139: warning: no header providing "o2::aod::singletrackselector::TOFselection" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:621:35: warning: no header providing "round" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:621:78: warning: no header providing "floor" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:621:84: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:697:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:699:58: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:750:69: warning: no header providing "o2::aod::singletrackselector::TPCselection" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:750:139: warning: no header providing "o2::aod::singletrackselector::TOFselection" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:819:84: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] ``` #### `PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx` ```text PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:18:1: warning: included header JetBkgSubUtils.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:19:1: warning: included header JetDerivedDataUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:20:1: warning: included header Jet.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:21:1: warning: included header JetReducedData.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:24:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:25:1: warning: included header CollisionAssociationTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:37:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:38:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:39:1: warning: included header TProfile2D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:40:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:42:1: warning: included header TMatrixD.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:46:1: warning: included header ClusterSequence.hh is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:50:1: warning: included header Selector.hh is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:51:1: warning: included header JetMedianBackgroundEstimator.hh is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:52:1: warning: included header Subtractor.hh is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:65:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:67:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:67:54: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:69:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:148:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:151:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:155:41: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:168:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:168:60: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:169:158: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:171:101: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:172:86: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:287:70: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:296:58: warning: no header providing "o2::framework::kTProfile2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:340:27: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:426:43: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:428:43: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:429:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:431:3: warning: no header providing "TMatrixD" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:458:5: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:663:122: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:667:60: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:756:126: warning: no header providing "o2::constants::physics::MassLambda0Bar" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:1304:62: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:1314:69: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:1320:70: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:1324:68: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:1328:67: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:1364:69: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:1371:70: warning: no header providing "o2::aod::CentFT0Ms" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:1372:72: warning: no header providing "o2::aod::PVMults" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:1372:102: warning: no header providing "o2::aod::CentNGlobals" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:1373:114: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:1404:14: warning: no header providing "fastjet::RecombinationScheme" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:1404:58: warning: no header providing "fastjet::E_scheme" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:1405:14: warning: no header providing "fastjet::JetDefinition" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:1405:44: warning: no header providing "fastjet::antikt_algorithm" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:1535:74: warning: no header providing "TMath::ACos" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:1562:63: warning: no header providing "TMath::ASin" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:1743:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:1952:75: warning: no header providing "TMath::ATan2" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:2187:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:2541:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:2551:51: warning: no header providing "std::find" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx` ```text PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:16:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:17:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:27:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:28:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:33:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:34:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:35:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:37:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:40:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:41:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:43:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:44:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:45:1: warning: included header TVector3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:46:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:61:8: warning: constructor does not initialize these fields: ccdb, centrality, dphi, weight, V01Tag, V02Tag, costhetastar1, costhetastar2 [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:69:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:71:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:72:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:74:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:78:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:124:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:124:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:128:64: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:142:3: warning: no header providing "TProfile2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:145:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:147:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:157:38: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:186:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:202:46: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:205:46: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:211:72: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:372:16: warning: no header providing "TVector2" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:409:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:414:26: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/lambdak0seff.cxx` ```text PWGLF/Tasks/Strangeness/lambdak0seff.cxx:14:1: warning: included header LFStrangenessPIDTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:16:1: warning: included header SPCalibrationTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:18:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:19:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:20:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:23:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:24:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:30:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:31:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:37:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:39:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:41:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:42:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:43:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:44:1: warning: included header TF1.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:45:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:46:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:47:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:48:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:49:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:51:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:52:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:53:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:56:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:60:1: warning: included header deque is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:61:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:62:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:63:1: warning: included header set is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:65:1: warning: included header type_traits is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:66:1: warning: included header unordered_map is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:67:1: warning: included header utility is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:73:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:75:8: warning: constructor does not initialize these fields: mRunNumber, ccdb, pdg, hwgtAL [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:77:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:78:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:79:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:79:74: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:79:101: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:79:128: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:83:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:85:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:133:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:133:56: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:140:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:142:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:144:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:148:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:150:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:269:39: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:312:77: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:312:137: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:315:78: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:315:138: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:318:81: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0seff.cxx:480:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx` ```text PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:47:8: warning: constructor does not initialize these fields: pdg, rhoLattice, rhoLatticeFV0AMC, ampchannel, ampchannelBefore, rhoLatticeT0A, rhoLatticeT0C, estimator [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:49:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:52:37: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:92:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:221:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:224:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:243:26: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:531:22: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:539:24: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:740:29: warning: no header providing "std::span" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:829:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:862:50: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:871:50: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:879:50: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:888:50: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:897:50: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:905:50: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:950:26: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:965:17: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:1041:11: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:1236:11: warning: variable 'etamin' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:1236:19: warning: variable 'etamax' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:1236:27: warning: variable 'minphi' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:1236:35: warning: variable 'maxphi' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:1236:43: warning: variable 'dphi' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:1237:23: warning: variable 'nsectors' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:1533:39: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:1661:11: warning: variable 'flattenicity' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx` ```text PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:27:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:28:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:32:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:35:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:39:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:41:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:42:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:43:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:44:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:45:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:46:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:47:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:56:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:62:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:65:59: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:79:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:81:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:91:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:151:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:171:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:193:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:207:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:221:33: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:241:20: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:344:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:348:30: warning: no header providing "kINT7" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:356:33: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:480:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:480:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:490:51: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:497:33: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ``` #### `PWGLF/Tasks/Strangeness/lambdalambda.cxx` ```text PWGLF/Tasks/Strangeness/lambdalambda.cxx:16:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:19:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:29:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:30:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:35:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:36:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:37:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:39:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:41:1: warning: included header Boost.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:42:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:43:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:45:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:46:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:47:1: warning: included header TVector3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:63:8: warning: constructor does not initialize these fields: ccdb, centrality, IsTriggered, IsSelected [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/lambdalambda.cxx:69:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:74:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:76:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:77:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:79:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:83:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:144:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:145:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:158:3: warning: no header providing "TProfile2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:173:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:179:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:183:35: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:223:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:245:46: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:248:46: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:254:72: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:340:17: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:526:64: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:581:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdalambda.cxx:584:23: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/lambdapolarization.cxx` ```text PWGLF/Tasks/Strangeness/lambdapolarization.cxx:17:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:18:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:22:1: warning: included header PIDResponseITS.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:30:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:31:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:36:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:37:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:38:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:40:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:43:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:44:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:46:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:51:1: warning: included header array is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:64:8: warning: constructor does not initialize these fields: ccdb, DetId, RefAId, RefBId, QvecDetInd, QvecRefAInd, QvecRefBInd, centrality, angle, psi, relphi [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:73:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:75:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:76:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:78:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:82:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:142:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:143:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:168:15: warning: no header providing "TProfile3D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:169:3: warning: no header providing "TProfile2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:208:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:210:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:212:55: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:221:18: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:221:54: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:354:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:357:68: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:365:51: warning: no header providing "o2::framework::kTProfile3D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:396:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:417:46: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:420:46: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:426:72: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:962:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:1010:30: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolarization.cxx:1015:20: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/lambdapolsp.cxx` ```text PWGLF/Tasks/Strangeness/lambdapolsp.cxx:19:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:20:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:23:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:30:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:31:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:37:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:39:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:42:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:43:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:46:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:47:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:48:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:49:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:51:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:53:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:54:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:56:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:60:1: warning: included header deque is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:61:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:62:1: warning: included header iterator is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:63:1: warning: included header set is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:65:1: warning: included header type_traits is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:66:1: warning: included header unordered_map is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:73:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:79:8: warning: constructor does not initialize these fields: mRunNumber, ccdb, pdg, hwgtAL, heffL, heffAL, modqxZDCA, modqyZDCA, modqxZDCC, modqyZDCC, accprofileL, accprofileAL [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:81:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:82:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:83:18: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:83:74: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:83:101: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:83:128: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:87:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:89:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:200:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:200:56: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:225:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:228:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:230:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:235:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:248:64: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:346:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:365:50: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:682:39: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:870:15: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:889:3: warning: no header providing "TProfile2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:918:75: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:918:135: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:927:76: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:927:136: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:931:79: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:1172:13: warning: Value stored to 'tagb' during its initialization is never read [clang-analyzer-deadcode.DeadStores] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:1179:13: warning: variable 'binxwgt' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:1180:16: warning: variable 'wgtvalue' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:1243:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:1410:11: warning: Value stored to 'tagb' during its initialization is never read [clang-analyzer-deadcode.DeadStores] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:1419:11: warning: variable 'binxwgt' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:1420:14: warning: variable 'wgtvalue' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:1421:11: warning: variable 'binxwgtAL' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:1422:14: warning: variable 'effwgtvalueAL' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/lambdapolsp.cxx:1423:14: warning: variable 'effwgtvalueL' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx` ```text PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:19:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:26:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:31:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:32:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:33:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:35:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:43:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:45:1: warning: included header limits is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:49:1: warning: included header type_traits is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:63:8: warning: constructor does not initialize these fields: ccdb, hweight1, hweight2, hweight3, hweight4, hweight12, hweight22, hweight32, hweight42 [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:67:74: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:67:101: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:67:128: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:71:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:73:3: warning: no header providing "TH3D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:123:46: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:142:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:142:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:144:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:146:40: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:148:58: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:149:48: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:238:33: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:287:18: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:342:5: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:406:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:881:17: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1003:16: warning: no header providing "std::unordered_set" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/nonPromptCascade.cxx` ```text PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:21:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:26:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:27:1: warning: included header BetheBlochAleph.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:31:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:38:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:40:1: warning: included header THnSparse.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:42:1: warning: included header TTree.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:63:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:79:3: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:80:3: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:137:3: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:177:8: warning: constructor does not initialize these fields: mCCDB [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:179:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:196:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:210:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:220:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:223:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:228:8: warning: no header providing "std::map" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:228:12: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:249:29: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:254:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:273:45: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:273:120: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:275:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:283:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:328:52: warning: no header providing "o2::utils::Str" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:334:86: warning: no header providing "std::endl" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:505:7: warning: uninitialized record type: 'momenta' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:506:7: warning: uninitialized record type: 'cascadeMomentum' [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:507:23: warning: no header providing "o2::math_utils::SVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:529:19: warning: no header providing "ROOT::Math::LorentzVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:529:45: warning: no header providing "ROOT::Math::PtEtaPhiM4D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:533:60: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:533:97: warning: no header providing "o2::constants::physics::MassKPlus" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:537:78: warning: no header providing "o2::constants::physics::MassPiPlus" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:541:41: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:541:77: warning: no header providing "o2::constants::physics::MassPiMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:547:58: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:641:373: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:732:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:836:27: warning: no header providing "std::max" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx` ```text PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:19:1: warning: included header inelGt.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:22:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:24:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:25:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:39:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:42:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:47:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:48:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:49:1: warning: included header TF1.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:50:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:52:1: warning: included header TH2.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:54:1: warning: included header THn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:55:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:57:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:58:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:60:1: warning: included header TRandom.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:62:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:150:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:151:61: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:154:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:166:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:296:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:307:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:313:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:315:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:318:56: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:329:66: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:331:23: warning: no header providing "fmt::format" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:331:121: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:342:86: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:343:93: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:380:62: warning: no header providing "fmt::format" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:606:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:613:5: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:624:16: warning: Called C++ object pointer is uninitialized [clang-analyzer-core.CallAndMessage] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:657:16: warning: Called C++ object pointer is uninitialized [clang-analyzer-core.CallAndMessage] PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:686:7: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx` ```text PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:20:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:21:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:22:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:23:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:39:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:41:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:42:1: warning: included header TDirectory.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:44:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:45:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:46:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:47:1: warning: included header TH3F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:50:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:51:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:53:1: warning: included header TRandom.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:90:8: warning: constructor does not initialize these fields: pdgDB, ccdb, effMapPhi, effMapK0S, effMapPionTPC, effMapPionTPCTOF [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:92:56: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:110:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:111:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:262:66: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:262:90: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:264:97: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:287:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:290:33: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:304:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:317:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:326:3: warning: no header providing "TH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:331:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:334:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:342:56: warning: no header providing "o2::constants::math::PIHalf" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:343:54: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:355:61: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:367:81: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:370:75: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:424:95: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:429:93: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:495:24: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:741:48: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:745:48: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:749:76: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:886:15: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:1178:24: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:1428:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:2662:7: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:3031:5: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:3082:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/sigmaanalysis.cxx` ```text PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:24:1: warning: included header LFStrangenessPIDTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:28:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:29:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:30:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:31:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:32:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:33:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:37:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:41:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:43:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:44:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:45:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:46:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:47:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:48:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:49:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:62:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:77:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:78:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:86:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:86:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:89:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:94:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:232:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:232:54: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:267:73: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:276:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:290:56: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:293:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:293:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:322:92: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:350:63: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:478:100: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:507:22: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:533:18: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:589:83: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:594:88: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:599:84: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:609:91: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:614:94: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:619:95: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:624:95: warning: no header providing "o2::aod::evsel::kIsVertexTRDmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:629:91: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:634:97: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:639:100: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStrict" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:644:100: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeNarrow" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:649:91: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:654:94: warning: no header providing "o2::aod::evsel::kNoCollInRofStrict" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:972:27: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:1019:70: warning: no header providing "TMath::Tan" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:1019:85: warning: no header providing "TMath::ATan" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:1019:97: warning: no header providing "TMath::Exp" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:1131:84: warning: no header providing "TMath::ACos" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:1423:66: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:1721:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/sjetTreeCreator.cxx` ```text PWGLF/Tasks/Strangeness/sjetTreeCreator.cxx:42:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/sjetTreeCreator.cxx:50:1: warning: included header unordered_map is not used directly [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/strangeCascTrack.cxx` ```text PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:19:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:20:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:21:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:22:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:25:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:34:1: warning: included header TF2.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:35:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:61:8: warning: constructor does not initialize these fields: ccdb, pdgDB, hEfficiencyOmegaStd1D, hEfficiencyOmegaTra1D, hEfficiencyXiStd1D, hEfficiencyXiTra1D, hEfficiencyErrOmegaStd1D, hEfficiencyErrOmegaTra1D, hEfficiencyErrXiStd1D, hEfficiencyErrXiTra1D, hPurityOmegaStd1D, hPurityOmegaTra1D, hPurityXiStd1D, hPurityXiTra1D, hPurityErrOmegaStd1D, hPurityErrOmegaTra1D, hPurityErrXiStd1D, hPurityErrXiTra1D, hEfficiencyOmegaStd2D, hEfficiencyOmegaTra2D, hEfficiencyXiStd2D, hEfficiencyXiTra2D, hEfficiencyErrOmegaStd2D, hEfficiencyErrOmegaTra2D, hEfficiencyErrXiStd2D, hEfficiencyErrXiTra2D, hPurityOmegaStd2D, hPurityOmegaTra2D, hPurityXiStd2D, hPurityXiTra2D, hPurityErrOmegaStd2D, hPurityErrOmegaTra2D, hPurityErrXiStd2D, hPurityErrXiTra2D, mRunNumber [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:63:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:68:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:68:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:148:40: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:155:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:158:3: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:178:3: warning: no header providing "TH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:200:31: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:220:5: warning: no header providing "TList" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:276:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:308:36: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:341:12: warning: variable 'y' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:477:22: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:477:33: warning: no header providing "THn" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:479:11: warning: variable 'previousContent' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:479:28: warning: variable 'previousError2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:479:44: warning: variable 'currentContent' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:479:60: warning: variable 'currentError2' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:484:43: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:495:25: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:496:41: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:774:14: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:846:56: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:933:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:936:59: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:937:55: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:953:69: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:954:68: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:955:67: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:956:69: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:957:67: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:958:69: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:959:70: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:960:73: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:961:66: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:962:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:963:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:964:61: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:966:75: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:967:74: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:968:73: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:969:75: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:970:73: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:971:75: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:972:76: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:973:79: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:974:72: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:975:64: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:976:64: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:977:67: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:979:59: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:980:62: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:981:62: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:982:65: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:983:67: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:984:66: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:985:65: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:986:67: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:987:65: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:988:67: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:989:68: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:990:71: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:991:64: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:993:56: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:994:56: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:995:59: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:996:52: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:996:65: warning: no header providing "o2::framework::kTHnD" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:997:55: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:998:61: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:999:64: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1000:57: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1001:60: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1002:60: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1003:63: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1004:56: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1005:59: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1008:65: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1009:68: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1010:68: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1011:71: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1012:73: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1013:72: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1014:71: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1015:73: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1016:71: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1017:73: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1018:74: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1019:77: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1020:70: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1022:62: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1023:62: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1024:65: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1025:61: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGLF/Tasks/Strangeness/strangeCascTrack.cxx:1026:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ``` #### `PWGLF/Tasks/Strangeness/strangenessInJets.cxx` ```text PWGLF/Tasks/Strangeness/strangenessInJets.cxx:23:1: warning: included header JetDerivedDataUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:25:1: warning: included header Jet.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:26:1: warning: included header JetReducedData.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:31:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:34:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:36:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:43:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:47:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:49:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:50:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:51:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:52:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:58:1: warning: included header ClusterSequence.hh is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:62:1: warning: included header Selector.hh is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:63:1: warning: included header JetMedianBackgroundEstimator.hh is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:64:1: warning: included header Subtractor.hh is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:76:68: warning: no header providing "o2::aod::CentFT0Ms" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:115:17: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:118:14: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:129:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:132:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:137:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:140:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:140:54: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:151:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:151:21: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:197:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:199:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:200:58: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:221:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:247:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:260:58: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:762:19: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:764:93: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:765:91: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:767:55: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:837:59: warning: no header providing "o2::constants::physics::MassOmegaMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:951:56: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:983:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:1025:14: warning: no header providing "fastjet::JetDefinition" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:1025:44: warning: no header providing "fastjet::antikt_algorithm" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:1203:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:1216:22: warning: no header providing "std::pair" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:1460:23: warning: variable 'particleId' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:1460:35: warning: variable 'chargeId' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:1514:23: warning: variable 'particleId' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:1514:35: warning: variable 'chargeId' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:1951:19: warning: variable 'particleId' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:1951:31: warning: variable 'chargeId' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/strangenessInJets.cxx:2032:7: warning: no header providing "Bool_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx` ```text PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:21:1: warning: included header JetDerivedDataUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:23:1: warning: included header Jet.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:24:1: warning: included header JetReducedData.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:28:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:31:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:33:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:40:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:45:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:47:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:48:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:49:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:50:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:56:1: warning: included header ClusterSequence.hh is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:60:1: warning: included header Selector.hh is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:61:1: warning: included header JetMedianBackgroundEstimator.hh is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:62:1: warning: included header Subtractor.hh is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:76:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:76:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:81:38: warning: no header providing "o2::aod::CentFT0Cs" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:82:38: warning: no header providing "o2::aod::CentFT0Ms" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:91:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:94:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:99:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:102:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:102:54: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:121:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:135:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:191:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:191:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:211:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:221:64: warning: no header providing "std::endl" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:227:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:244:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:258:42: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:267:24: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:267:29: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:478:17: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:481:18: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:644:89: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:750:89: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:818:19: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:820:93: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:821:91: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:895:59: warning: no header providing "o2::constants::physics::MassOmegaMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:1011:56: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:1047:77: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:1050:75: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:1125:14: warning: no header providing "fastjet::JetDefinition" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:1125:44: warning: no header providing "fastjet::antikt_algorithm" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:1171:11: warning: variable 'multiplicity' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:1350:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:1420:13: warning: variable 'genMultiplicity' is not initialized [cppcoreguidelines-init-variables] PWGLF/Tasks/Strangeness/strangenessInJetsIons.cxx:1718:13: warning: variable 'multiplicity' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx` ```text PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:33:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:36:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:37:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:38:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:39:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:40:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:44:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:49:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:51:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:52:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:53:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:54:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:55:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:56:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:72:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:80:8: warning: constructor does not initialize these fields: ccdb, mRunNumber, pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:81:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:81:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:84:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:97:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:134:18: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:220:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:232:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:233:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:239:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:244:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:244:54: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:249:67: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:264:17: warning: no header providing "std::clamp" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:275:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:285:54: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:286:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:286:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:313:56: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:316:108: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:317:16: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:367:83: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:373:88: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:379:84: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:391:91: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:397:94: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:403:95: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:409:95: warning: no header providing "o2::aod::evsel::kIsVertexTRDmatched" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:415:91: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:421:97: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:427:100: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStrict" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:433:100: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeNarrow" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:439:91: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:445:94: warning: no header providing "o2::aod::evsel::kNoCollInRofStrict" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:625:87: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx` ```text PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:20:1: warning: included header Index.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:22:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:23:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:26:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:27:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:37:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:39:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:42:1: warning: included header Vector2D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:43:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:44:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:46:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:55:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:55:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:61:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:63:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:65:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:66:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:75:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:125:54: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:129:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:130:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:131:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:134:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:136:46: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:142:62: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:252:39: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:299:19: warning: no header providing "ROOT::Math::XYZVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:304:23: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:305:28: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:305:40: warning: no header providing "TMath::Power" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:476:66: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:476:126: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:480:67: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:480:127: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:484:70: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:488:70: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:572:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:576:23: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:644:7: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/v0postprocessing.cxx` ```text PWGLF/Tasks/Strangeness/v0postprocessing.cxx:16:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0postprocessing.cxx:19:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0postprocessing.cxx:20:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0postprocessing.cxx:32:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0postprocessing.cxx:60:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0postprocessing.cxx:62:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0postprocessing.cxx:64:38: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0postprocessing.cxx:65:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0postprocessing.cxx:65:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx` ```text PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:41:1: warning: included header utility is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:47:29: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:62:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:64:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:64:51: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:75:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:177:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:200:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:211:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:249:46: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:271:70: warning: no header providing "fmt::format" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:354:22: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:361:69: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:366:70: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:371:64: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:694:31: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:694:41: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:694:56: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:696:18: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:699:20: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:700:10: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:700:37: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:700:67: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:700:91: warning: no header providing "o2::aod::PVMults" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:700:105: warning: no header providing "o2::aod::CentFT0Ms" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:701:10: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:1161:95: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0ptinvmassplots.cxx:1246:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx` ```text PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:41:17: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:84:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:84:73: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:109:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:139:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:166:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:173:10: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:174:73: warning: no header providing "fmt::format" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:174:215: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:288:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:289:26: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:289:53: warning: no header providing "o2::aod::mccollision::posZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:290:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:293:31: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:293:41: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:293:56: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:296:26: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:296:50: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:299:26: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:304:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:306:37: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:318:22: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:327:17: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx:680:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx` ```text PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:17:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:18:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:19:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:25:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:29:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:31:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:32:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:34:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:35:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:43:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:43:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:56:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:59:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:80:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:109:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:112:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:115:64: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:152:25: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:331:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:341:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:419:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:441:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ``` #### `PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx` ```text PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:15:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:17:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:22:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:23:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:25:1: warning: included header random is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:26:1: warning: included header utility is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:39:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:41:83: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:42:75: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:46:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:70:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:70:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:81:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:84:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:84:62: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:85:16: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:94:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:135:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:211:21: warning: no header providing "ROOT::Math::LorentzVector" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:211:47: warning: no header providing "ROOT::Math::PxPyPzM4D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:232:46: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:232:107: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/xiLambdaCorr.cxx:238:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGLF/Tasks/Strangeness/zdccalderived.cxx` ```text PWGLF/Tasks/Strangeness/zdccalderived.cxx:17:1: warning: included header ctpRateFetcher.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:18:1: warning: included header EventPlaneHelper.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:19:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:20:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:21:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:22:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:23:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:24:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:25:1: warning: included header Qvectors.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:26:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:31:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:32:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:33:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:34:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:35:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:36:1: warning: included header AlignParam.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:37:1: warning: included header Geometry.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:38:1: warning: included header Geometry.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:39:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:43:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:45:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:47:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:48:1: warning: included header TComplex.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:50:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:51:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:52:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:68:8: warning: constructor does not initialize these fields: ccdb, gainprofile, gainprofilevxy, hrecentereSpA, hrecenterecentSpA, hrecenterevxSpA, hrecenterevySpA, hrecenterevzSpA, shiftprofileA, shiftprofileC [cppcoreguidelines-pro-type-member-init] PWGLF/Tasks/Strangeness/zdccalderived.cxx:71:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:72:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:76:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:78:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:180:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:185:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:200:46: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:203:42: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:209:42: warning: no header providing "o2::framework::kTHnF" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:214:48: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:237:36: warning: no header providing "o2::framework::kTProfile2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:239:42: warning: no header providing "o2::framework::kTProfile3D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:255:3: warning: no header providing "TH2D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:256:3: warning: no header providing "TProfile" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:257:14: warning: no header providing "THnF" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:258:14: warning: no header providing "TH2F" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:262:3: warning: no header providing "TProfile3D" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:306:12: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:367:7: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:400:22: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGLF/Tasks/Strangeness/zdccalderived.cxx:439:9: warning: Value stored to 'qxZDCA' is never read [clang-analyzer-deadcode.DeadStores] PWGLF/Tasks/Strangeness/zdccalderived.cxx:440:9: warning: Value stored to 'qxZDCC' is never read [clang-analyzer-deadcode.DeadStores] PWGLF/Tasks/Strangeness/zdccalderived.cxx:441:9: warning: Value stored to 'qyZDCA' is never read [clang-analyzer-deadcode.DeadStores] PWGLF/Tasks/Strangeness/zdccalderived.cxx:442:9: warning: Value stored to 'qyZDCC' is never read [clang-analyzer-deadcode.DeadStores] ``` #### `PWGLF/Utils/collisionCuts.h` ```text PWGLF/Utils/collisionCuts.h:32:1: warning: included header string is not used directly [misc-include-cleaner] PWGLF/Utils/collisionCuts.h:107:25: warning: no header providing "kNaliases" is directly included [misc-include-cleaner] PWGLF/Utils/collisionCuts.h:111:85: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGLF/Utils/collisionCuts.h:124:29: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Utils/collisionCuts.h:352:45: warning: no header providing "std::pair" is directly included [misc-include-cleaner] PWGLF/Utils/collisionCuts.h:442:30: warning: no header providing "BIT" is directly included [misc-include-cleaner] PWGLF/Utils/collisionCuts.h:469:46: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGLF/Utils/collisionCuts.h:513:32: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGLF/Utils/collisionCuts.h:513:42: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGLF/Utils/collisionCuts.h:513:52: warning: no header providing "o2::aod::Run2BCInfos" is directly included [misc-include-cleaner] PWGLF/Utils/collisionCuts.h:513:70: warning: no header providing "o2::aod::Timestamps" is directly included [misc-include-cleaner] ``` #### `PWGLF/Utils/collisionCutsGroup.h` ```text PWGLF/Utils/collisionCutsGroup.h:32:1: warning: included header EventSelectionParams.h is not used directly [misc-include-cleaner] PWGLF/Utils/collisionCutsGroup.h:36:1: warning: included header iosfwd is not used directly [misc-include-cleaner] ``` #### `PWGLF/Utils/decay3bodyBuilderHelper.h` ```text PWGLF/Utils/decay3bodyBuilderHelper.h:15:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGLF/Utils/decay3bodyBuilderHelper.h:21:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/Utils/decay3bodyBuilderHelper.h:23:1: warning: included header AnalysisDataModel.h is not used directly [misc-include-cleaner] PWGLF/Utils/decay3bodyBuilderHelper.h:48:8: warning: constructor does not initialize these fields: mass, massV0, sign, momentum, position [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/decay3bodyBuilderHelper.h:98:3: warning: constructor does not initialize these fields: decay3bodyselections, svertexerselections [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/decay3bodyBuilderHelper.h:126:20: warning: no header providing "o2::dataformats::VertexBase" is directly included [misc-include-cleaner] PWGLF/Utils/decay3bodyBuilderHelper.h:328:22: warning: no header providing "o2::dataformats::DCA" is directly included [misc-include-cleaner] PWGLF/Utils/decay3bodyBuilderHelper.h:434:13: warning: variable 'rapidity' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/decay3bodyBuilderHelper.h:441:13: warning: variable 'pT' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/decay3bodyBuilderHelper.h:461:11: warning: variable 'cpa' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/decay3bodyBuilderHelper.h:471:11: warning: variable 'P' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/decay3bodyBuilderHelper.h:472:11: warning: variable 'ctau' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/decay3bodyBuilderHelper.h:567:19: warning: no header providing "std::runtime_error" is directly included [misc-include-cleaner] PWGLF/Utils/decay3bodyBuilderHelper.h:568:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGLF/Utils/decay3bodyBuilderHelper.h:629:11: warning: variable 'mass' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/decay3bodyBuilderHelper.h:629:17: warning: variable 'massErr' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/decay3bodyBuilderHelper.h:634:11: warning: variable 'massV0' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/decay3bodyBuilderHelper.h:634:19: warning: variable 'massV0Err' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/decay3bodyBuilderHelper.h:674:9: warning: variable 'n3bodyVtx' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/decay3bodyBuilderHelper.h:770:9: warning: variable 'nV0' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/decay3bodyBuilderHelper.h:806:11: warning: variable 'massForLambdaHyp' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/decay3bodyBuilderHelper.h:834:9: warning: variable 'n3bodyVtx' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGLF/Utils/inelGt.h` ```text PWGLF/Utils/inelGt.h:23:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGLF/Utils/inelGt.h:45:3: warning: uninitialized record type: 'etaCharge' [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/inelGt.h:118:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ``` #### `PWGLF/Utils/mcParticle.h` ```text PWGLF/Utils/mcParticle.h:37:11: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGLF/Utils/mcParticle.h:85:25: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Utils/mcParticle.h:85:53: error: constexpr variable cannot have non-literal type 'const std::array' (aka 'const array') [clang-diagnostic-error] PWGLF/Utils/mcParticle.h:85:53: error: implicit instantiation of undefined template 'std::array' [clang-diagnostic-error] PWGLF/Utils/mcParticle.h:86:46: error: constexpr variable cannot have non-literal type 'const std::array' (aka 'const array') [clang-diagnostic-error] PWGLF/Utils/mcParticle.h:86:46: error: implicit instantiation of undefined template 'std::array' [clang-diagnostic-error] PWGLF/Utils/mcParticle.h:232:36: warning: no header providing "o2::constants::physics::Pdg" is directly included [misc-include-cleaner] PWGLF/Utils/mcParticle.h:325:13: error: use of undeclared identifier 'debug' [clang-diagnostic-error] ``` #### `PWGLF/Utils/nucleiUtils.h` ```text PWGLF/Utils/nucleiUtils.h:16:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:18:1: warning: included header PIDResponseTOF.h is not used directly [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:19:1: warning: included header pidTOFBase.h is not used directly [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:21:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:22:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:49:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:56:3: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:57:3: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:63:3: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:104:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:117:13: warning: no header providing "BIT" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:133:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:134:10: error: use of undeclared identifier 'PDG_t' [clang-diagnostic-error] PWGLF/Utils/nucleiUtils.h:136:34: warning: no header providing "o2::constants::physics::Pdg" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:231:68: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:231:104: warning: no header providing "o2::constants::physics::MassDeuteron" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:231:142: warning: no header providing "o2::constants::physics::MassTriton" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:231:178: warning: no header providing "o2::constants::physics::MassHelium3" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:231:215: warning: no header providing "o2::constants::physics::MassAlpha" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:232:44: error: use of undeclared identifier 'PDG_t' [clang-diagnostic-error] PWGLF/Utils/nucleiUtils.h:233:23: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:248:11: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:290:109: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:304:84: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:314:89: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:319:93: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:324:98: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:329:98: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:334:99: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:358:86: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:358:97: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:378:5: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:402:5: warning: suspicious exception object created but not thrown; did you mean 'throw runtime_error'? [bugprone-throw-keyword-missing] PWGLF/Utils/nucleiUtils.h:402:10: warning: no header providing "std::runtime_error" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:405:21: warning: no header providing "fmt::format" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:408:285: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:416:200: warning: no header providing "fmt::format" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:425:8: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:432:7: warning: constructor does not initialize these fields: mTpcBetheBlochParams, mSpecies [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/nucleiUtils.h:436:3: warning: constructor does not initialize these fields: mTpcBetheBlochParams [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/nucleiUtils.h:461:32: warning: no header providing "o2::pid::tof::Beta" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:472:50: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:504:42: warning: no header providing "u_int32_t" is directly included [misc-include-cleaner] PWGLF/Utils/nucleiUtils.h:514:50: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] ``` #### `PWGLF/Utils/pidTOFGeneric.h` ```text PWGLF/Utils/pidTOFGeneric.h:60:30: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGLF/Utils/pidTOFGeneric.h:63:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGLF/Utils/pidTOFGeneric.h:98:43: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGLF/Utils/pidTOFGeneric.h:98:70: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGLF/Utils/pidTOFGeneric.h:98:97: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGLF/Utils/pidTOFGeneric.h:114:16: warning: no header providing "o2::tof::ParameterCollection" is directly included [misc-include-cleaner] PWGLF/Utils/pidTOFGeneric.h:191:73: warning: no header providing "TGraph" is directly included [misc-include-cleaner] PWGLF/Utils/pidTOFGeneric.h:224:23: warning: no header providing "o2::parameters::GRPLHCIFData" is directly included [misc-include-cleaner] PWGLF/Utils/pidTOFGeneric.h:240:11: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGLF/Utils/pidTOFGeneric.h:308:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Utils/pidTOFGeneric.h:323:41: warning: no header providing "TMath::C" is directly included [misc-include-cleaner] PWGLF/Utils/pidTOFGeneric.h:326:7: warning: constructor does not initialize these fields: pidType [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/pidTOFGeneric.h:333:14: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/Utils/pidTOFGeneric.h:349:33: warning: slicing object from type 'TOFResoParamsV3' to 'Parameters<13>' discards 128 bytes of state [cppcoreguidelines-slicing] PWGLF/Utils/pidTOFGeneric.h:372:11: warning: variable 'expSigma' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/pidTOFGeneric.h:429:46: warning: no header providing "o2::track::pid_constants::sMasses2Z" is directly included [misc-include-cleaner] PWGLF/Utils/pidTOFGeneric.h:441:61: error: no member named 'BCsWithTimestamps' in namespace 'o2::aod' [clang-diagnostic-error] PWGLF/Utils/pidTOFGeneric.h:442:63: error: no member named 'BCsWithTimestamps' in namespace 'o2::aod' [clang-diagnostic-error] PWGLF/Utils/pidTOFGeneric.h:447:66: error: no member named 'BCsWithTimestamps' in namespace 'o2::aod' [clang-diagnostic-error] PWGLF/Utils/pidTOFGeneric.h:448:68: error: no member named 'BCsWithTimestamps' in namespace 'o2::aod' [clang-diagnostic-error] ``` #### `PWGLF/Utils/rsnOutput.h` ```text PWGLF/Utils/rsnOutput.h:107:92: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGLF/Utils/rsnOutput.h:122:18: warning: variable 'currentType' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/rsnOutput.h:139:37: warning: no header providing "o2::framework::HistogramConfigSpec" is directly included [misc-include-cleaner] PWGLF/Utils/rsnOutput.h:139:72: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGLF/Utils/rsnOutput.h:150:25: warning: variable 'currentTypeSys' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/rsnOutput.h:177:29: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGLF/Utils/rsnOutput.h:217:20: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGLF/Utils/rsnOutput.h:221:43: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGLF/Utils/rsnOutput.h:266:16: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGLF/Utils/rsnOutput.h:291:5: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGLF/Utils/rsnOutput.h:302:16: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGLF/Utils/rsnOutput.h:340:16: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGLF/Utils/rsnOutput.h:344:16: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGLF/Utils/rsnOutput.h:348:16: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGLF/Utils/rsnOutput.h:352:16: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGLF/Utils/rsnOutput.h:356:16: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGLF/Utils/rsnOutput.h:360:16: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGLF/Utils/rsnOutput.h:364:16: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGLF/Utils/rsnOutput.h:368:16: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGLF/Utils/rsnOutput.h:372:16: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGLF/Utils/rsnOutput.h:376:16: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] PWGLF/Utils/rsnOutput.h:380:16: warning: prefer using 'override' or (rarely) 'final' instead of 'virtual' [cppcoreguidelines-explicit-virtual-functions] ``` #### `PWGLF/Utils/strangenessBuilderHelper.h` ```text PWGLF/Utils/strangenessBuilderHelper.h:19:1: warning: included header AnalysisDataModel.h is not used directly [misc-include-cleaner] PWGLF/Utils/strangenessBuilderHelper.h:21:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGLF/Utils/strangenessBuilderHelper.h:49:3: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderHelper.h:135:3: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderHelper.h:141:8: warning: constructor does not initialize these fields: massGamma, massK0Short, massLambda, massAntiLambda, positionCovariance, momentumCovariance [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderHelper.h:179:8: warning: constructor does not initialize these fields: kfTrackCovarianceV0, kfTrackCovariancePos, kfTrackCovarianceNeg, covariance [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderHelper.h:236:3: warning: constructor does not initialize these fields: v0selections, cascadeselections [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderHelper.h:316:7: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderHelper.h:370:5: warning: uninitialized record type: 'dcaV0Info' [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderHelper.h:413:20: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderHelper.h:424:31: warning: no header providing "TMath::ACos" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderHelper.h:517:5: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderHelper.h:558:19: warning: no header providing "std::runtime_error" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderHelper.h:559:7: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderHelper.h:605:11: warning: variable 'cosPA' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderHelper.h:751:5: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderHelper.h:778:32: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderHelper.h:978:5: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderHelper.h:1004:11: warning: variable 'massPosTrack' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderHelper.h:1004:25: warning: variable 'massNegTrack' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderHelper.h:1212:11: warning: variable 'MLambda' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderHelper.h:1212:20: warning: variable 'SigmaLambda' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderHelper.h:1212:33: warning: variable 'MXi' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderHelper.h:1212:38: warning: variable 'SigmaXi' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderHelper.h:1212:47: warning: variable 'MOmega' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderHelper.h:1212:55: warning: variable 'SigmaOmega' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderHelper.h:1221:5: warning: uninitialized record type: 'covCascKF' [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderHelper.h:1228:5: warning: uninitialized record type: 'covV0KF' [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderHelper.h:1235:5: warning: uninitialized record type: 'cvNegKF' [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderHelper.h:1235:5: warning: uninitialized record type: 'cvPosKF' [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderHelper.h:1246:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderHelper.h:1305:5: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderHelper.h:1316:5: warning: uninitialized record type: 'tr1p' [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderHelper.h:1317:5: warning: uninitialized record type: 'tr2p' [cppcoreguidelines-pro-type-member-init] ``` #### `PWGLF/Utils/strangenessBuilderModule.h` ```text PWGLF/Utils/strangenessBuilderModule.h:22:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] PWGLF/Utils/strangenessBuilderModule.h:24:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] PWGLF/Utils/strangenessBuilderModule.h:29:1: warning: included header MeanVertexObject.h is not used directly [misc-include-cleaner] PWGLF/Utils/strangenessBuilderModule.h:30:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGLF/Utils/strangenessBuilderModule.h:40:1: warning: included header memory is not used directly [misc-include-cleaner] PWGLF/Utils/strangenessBuilderModule.h:42:1: warning: included header vector is not used directly [misc-include-cleaner] PWGLF/Utils/strangenessBuilderModule.h:178:23: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderModule.h:195:8: warning: constructor does not initialize these fields: v0indices, v0cores, v0covs, cascidx, kfcascidx, tracascidx, cascdata, kfcascdata, tracascdata, casccovs, kfcasccovs, tracasccovs, v0dataLink, cascdataLink, kfcascdataLink, tracascdataLink, v0trackXs, cascTrackXs, cascbb, v0daucovs, v0daucovIUs, v0dauPositions, v0dauPositionsIU, v0ivanovs, v0labels, v0mccores, v0CoreMCLabels, v0mccollref, casclabels, kfcasclabels, tracasclabels, bbtags, cascmccores, cascCoreMClabels, cascmccollrefs, v0FoundTag, cascFoundTag [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderModule.h:266:8: warning: constructor does not initialize these fields: mEnabledTables [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderModule.h:381:3: warning: constructor does not initialize these fields: mRunNumber, v0List, cascadeList, sorted_v0, sorted_cascade, v0sFromCascades, ao2dV0toV0List, v0Map [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderModule.h:414:3: warning: constructor does not initialize these fields: cascCoreToCascades, kfCascCoreToCascades, traCascCoreToCascades, cascadeToCascCores, cascadeToKFCascCores, cascadeToTraCascCores [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderModule.h:455:10: warning: constructor does not initialize these fields: xyz, posP, negP, momentum [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderModule.h:474:10: warning: constructor does not initialize these fields: label, motherLabel, mcCollision, pdgCode, pdgCodeMother, pdgCodeV0, pdgCodePositive, pdgCodeNegative, pdgCodeBachelor, isPhysicalPrimary, xyz, lxyz, posP, negP, bachP, momentum, mcParticlePositive, mcParticleNegative, mcParticleBachelor [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderModule.h:530:5: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderModule.h:531:70: warning: no header providing "o2::framework::RunningWorkflowInfo" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderModule.h:536:5: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderModule.h:538:11: warning: variable 'f' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderModule.h:545:29: warning: no header providing "o2::framework::DeviceSpec" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderModule.h:572:34: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderModule.h:740:36: warning: no header providing "o2::base::Propagator" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderModule.h:741:5: warning: no header providing "LOG" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderModule.h:902:47: warning: no header providing "o2::track::PID" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderModule.h:972:13: warning: variable 'v0ListReconstructedSize' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderModule.h:984:15: warning: variable 'originParticleIndex' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderModule.h:1124:18: warning: variable 'cascadeListReconstructedSize' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderModule.h:1135:17: warning: variable 'originParticleIndex' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderModule.h:1166:41: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderModule.h:1415:17: warning: variable 'lPt' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderModule.h:1419:17: warning: variable 'lPtot' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderModule.h:1424:17: warning: variable 'lLengthTraveled' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderModule.h:1510:11: warning: uninitialized record type: 'positivePositionIU' [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderModule.h:1511:11: warning: uninitialized record type: 'negativePositionIU' [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderModule.h:1512:22: warning: no header providing "o2::track::TrackPar" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderModule.h:1651:20: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderModule.h:1727:41: warning: no header providing "TMCProcess" is directly included [misc-include-cleaner] PWGLF/Utils/strangenessBuilderModule.h:1954:17: warning: variable 'lPt' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderModule.h:1958:17: warning: variable 'lPtot' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderModule.h:1963:17: warning: variable 'lV0Ptot' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderModule.h:1968:17: warning: variable 'lLengthTraveled' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderModule.h:1973:17: warning: variable 'lV0LengthTraveled' is not initialized [cppcoreguidelines-init-variables] PWGLF/Utils/strangenessBuilderModule.h:2445:7: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/strangenessBuilderModule.h:2482:38: warning: no header providing "o2::track::kLabCovMatSize" is directly included [misc-include-cleaner] ``` #### `PWGLF/Utils/strangenessMasks.h` ```text PWGLF/Utils/strangenessMasks.h:130:1: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGLF/Utils/strangenessMasks.h:131:1: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGLF/Utils/strangenessMasks.h:133:1: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGLF/Utils/strangenessMasks.h:134:1: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGLF/Utils/strangenessMasks.h:136:1: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGLF/Utils/strangenessMasks.h:137:1: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGLF/Utils/strangenessMasks.h:139:1: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGLF/Utils/strangenessMasks.h:140:1: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGLF/Utils/strangenessMasks.h:141:1: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGLF/Utils/strangenessMasks.h:142:1: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGLF/Utils/strangenessMasks.h:143:1: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGLF/Utils/strangenessMasks.h:144:1: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGLF/Utils/strangenessMasks.h:145:1: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGLF/Utils/strangenessMasks.h:147:1: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGLF/Utils/strangenessMasks.h:148:1: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGLF/Utils/strangenessMasks.h:149:1: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGLF/Utils/strangenessMasks.h:151:1: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGLF/Utils/strangenessMasks.h:152:1: error: use of undeclared identifier 'std' [clang-diagnostic-error] PWGLF/Utils/strangenessMasks.h:154:1: error: use of undeclared identifier 'std' [clang-diagnostic-error] ``` #### `PWGLF/Utils/svPoolCreator.h` ```text PWGLF/Utils/svPoolCreator.h:19:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGLF/Utils/svPoolCreator.h:20:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGLF/Utils/svPoolCreator.h:21:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGLF/Utils/svPoolCreator.h:25:37: warning: no header providing "o2::math_utils::Bracket" is directly included [misc-include-cleaner] PWGLF/Utils/svPoolCreator.h:27:11: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/Utils/svPoolCreator.h:29:8: warning: constructor does not initialize these fields: Idxtr [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/svPoolCreator.h:40:7: warning: constructor does not initialize these fields: track0Pdg, track1Pdg [cppcoreguidelines-pro-type-member-init] PWGLF/Utils/svPoolCreator.h:87:7: warning: no header providing "LOGP" is directly included [misc-include-cleaner] PWGLF/Utils/svPoolCreator.h:138:7: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGLF/Utils/svPoolCreator.h:139:38: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Utils/svPoolCreator.h:151:44: warning: no header providing "o2::constants::lhc::LHCBunchSpacingNS" is directly included [misc-include-cleaner] PWGLF/Utils/svPoolCreator.h:163:18: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] PWGLF/Utils/svPoolCreator.h:163:61: warning: no header providing "o2::aod::track::TrackTimeResIsRange" is directly included [misc-include-cleaner] PWGLF/Utils/svPoolCreator.h:164:30: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGLF/Utils/svPoolCreator.h:172:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGLF/Utils/svPoolCreator.h:178:9: warning: no header providing "LOG" is directly included [misc-include-cleaner] ``` #### `PWGLF/Utils/v0SelectionBits.h` ```text PWGLF/Utils/v0SelectionBits.h:18:18: error: unknown type name 'uint64_t' [clang-diagnostic-error] ``` #### `PWGLF/Utils/v0SelectionGroup.cxx` ```text PWGLF/Utils/v0SelectionGroup.cxx:21:35: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:29:45: warning: no header providing "v0data::selCosPA" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:29:81: warning: no header providing "v0data::selRadius" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:29:118: warning: no header providing "v0data::selDCANegToPV" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:29:159: warning: no header providing "v0data::selDCAPosToPV" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:29:200: warning: no header providing "v0data::selDCAV0Dau" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:29:239: warning: no header providing "v0data::selRadiusMax" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:30:49: warning: no header providing "v0data::selK0ShortRapidity" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:30:95: warning: no header providing "v0data::selK0ShortCTau" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:30:137: warning: no header providing "v0data::selK0ShortArmenteros" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:30:185: warning: no header providing "v0data::selConsiderK0Short" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:31:48: warning: no header providing "v0data::selLambdaRapidity" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:31:93: warning: no header providing "v0data::selLambdaCTau" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:31:134: warning: no header providing "v0data::selConsiderLambda" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:32:138: warning: no header providing "v0data::selConsiderAntiLambda" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:37:73: warning: no header providing "v0data::selPosItsOnly" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:37:114: warning: no header providing "v0data::selPosGoodITSTrack" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:39:73: warning: no header providing "v0data::selPosGoodTPCTrack" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:42:75: warning: no header providing "v0data::selTPCPIDPositivePion" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:43:73: warning: no header providing "v0data::selTPCPIDPositiveProton" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:48:75: warning: no header providing "v0data::selTOFNSigmaPositivePionK0Short" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:48:134: warning: no header providing "v0data::selTOFDeltaTPositivePionK0Short" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:50:73: warning: no header providing "v0data::selTOFNSigmaPositiveProtonLambda" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:50:133: warning: no header providing "v0data::selTOFDeltaTPositiveProtonLambda" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:52:81: warning: no header providing "v0data::selTOFNSigmaPositivePionLambda" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:52:139: warning: no header providing "v0data::selTOFDeltaTPositivePionLambda" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:55:73: warning: no header providing "v0data::selNegItsOnly" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:55:114: warning: no header providing "v0data::selNegGoodITSTrack" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:57:73: warning: no header providing "v0data::selNegGoodTPCTrack" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:60:75: warning: no header providing "v0data::selTPCPIDNegativePion" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:62:81: warning: no header providing "v0data::selTPCPIDNegativeProton" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:66:75: warning: no header providing "v0data::selTOFNSigmaNegativePionK0Short" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:66:134: warning: no header providing "v0data::selTOFDeltaTNegativePionK0Short" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:68:73: warning: no header providing "v0data::selTOFNSigmaNegativePionLambda" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:68:131: warning: no header providing "v0data::selTOFDeltaTNegativePionLambda" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:70:81: warning: no header providing "v0data::selTOFNSigmaNegativeProtonLambda" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:70:141: warning: no header providing "v0data::selTOFDeltaTNegativeProtonLambda" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:74:73: warning: no header providing "v0data::selPosNotTPCOnly" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:74:117: warning: no header providing "v0data::selNegNotTPCOnly" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.cxx:82:3: warning: no header providing "LOGF" is directly included [misc-include-cleaner] ``` #### `PWGLF/Utils/v0SelectionGroup.h` ```text PWGLF/Utils/v0SelectionGroup.h:15:1: warning: included header iosfwd is not used directly [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.h:17:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.h:18:1: warning: included header v0SelectionBits.h is not used directly [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.h:19:1: warning: included header Logger.h is not used directly [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.h:20:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGLF/Utils/v0SelectionGroup.h:31:21: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] ``` #### `PWGLF/Utils/v0SelectionTools.h` ```text PWGLF/Utils/v0SelectionTools.h:27:1: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionTools.h:112:42: error: no member named 'aod' in namespace 'o2' [clang-diagnostic-error] PWGLF/Utils/v0SelectionTools.h:114:42: error: no member named 'aod' in namespace 'o2' [clang-diagnostic-error] PWGLF/Utils/v0SelectionTools.h:118:105: warning: no header providing "o2::constants::physics::MassLambda0" is directly included [misc-include-cleaner] PWGLF/Utils/v0SelectionTools.h:120:105: warning: no header providing "o2::constants::physics::MassK0Short" is directly included [misc-include-cleaner] ``` ### PWGMM #### `PWGMM/Lumi/Tasks/LumiFDDFT0.cxx` ```text PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:13:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:16:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:17:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:20:1: warning: included header CcdbApi.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:21:1: warning: included header GeomConstants.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:22:1: warning: included header NameConf.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:23:1: warning: included header MeanVertexObject.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:24:1: warning: included header Digit.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:25:1: warning: included header Triggers.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:27:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:28:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:31:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:35:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:37:1: warning: included header DCA.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:41:1: warning: included header array is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:55:42: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:69:50: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:127:8: warning: constructor does not initialize these fields: ccdb, mRunNumber [cppcoreguidelines-pro-type-member-init] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:128:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:133:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:138:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:147:24: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:171:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:180:33: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:180:60: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:180:87: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:190:5: warning: no header providing "Long64_t" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:192:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:193:28: warning: no header providing "o2::track::TrackParCov" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:234:15: warning: no header providing "o2::conf::ConfigurableParam" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:346:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:455:10: warning: no header providing "std::map" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:457:16: warning: no header providing "std::find" is directly included [misc-include-cleaner] ``` #### `PWGMM/Lumi/Tasks/fitLumi.cxx` ```text PWGMM/Lumi/Tasks/fitLumi.cxx:17:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:19:1: warning: included header Triggers.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:20:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:22:1: warning: included header CcdbApi.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:23:1: warning: included header BunchFilling.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:24:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:25:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:26:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:27:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:28:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:33:24: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:33:51: warning: no header providing "o2::constants::lhc::LHCMaxBunches" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:36:8: warning: constructor does not initialize these fields: nBins, nCollBins, relTS, startTimeInS, endTimeInS [cppcoreguidelines-pro-type-member-init] PWGMM/Lumi/Tasks/fitLumi.cxx:37:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:37:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:40:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:48:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:50:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:70:67: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:90:22: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:90:27: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:102:23: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:110:24: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:110:83: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:118:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:122:10: warning: no header providing "std::map" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/fitLumi.cxx:124:16: warning: no header providing "std::find" is directly included [misc-include-cleaner] ``` #### `PWGMM/Lumi/Tasks/lumi.cxx` ```text PWGMM/Lumi/Tasks/lumi.cxx:18:1: warning: included header array is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:20:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:25:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:28:1: warning: included header NameConf.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:30:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:34:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:39:1: warning: included header DCA.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:43:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:46:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:49:1: warning: included header GeomConstants.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:52:1: warning: included header CcdbApi.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:54:1: warning: included header MeanVertexObject.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:60:42: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:84:8: warning: constructor does not initialize these fields: ccdb, mRunNumber [cppcoreguidelines-pro-type-member-init] PWGMM/Lumi/Tasks/lumi.cxx:85:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:86:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:91:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:101:24: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:133:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:138:33: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:138:60: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:138:87: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:154:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:155:28: warning: no header providing "o2::track::TrackParCov" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumi.cxx:198:15: warning: no header providing "o2::conf::ConfigurableParam" is directly included [misc-include-cleaner] ``` #### `PWGMM/Lumi/Tasks/lumiStability.cxx` ```text PWGMM/Lumi/Tasks/lumiStability.cxx:19:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:20:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:30:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:46:8: warning: constructor does not initialize these fields: ccdb, tsSOR, tsEOR [cppcoreguidelines-pro-type-member-init] PWGMM/Lumi/Tasks/lumiStability.cxx:48:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:48:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:51:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:61:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:65:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:73:8: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:73:35: warning: no header providing "o2::constants::lhc::LHCMaxBunches" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:81:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:87:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:101:60: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:107:96: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:110:83: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:116:32: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:251:16: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:268:5: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:270:7: warning: Value stored to 'nOrbitsPerTF' is never read [clang-analyzer-deadcode.DeadStores] PWGMM/Lumi/Tasks/lumiStability.cxx:272:7: warning: Value stored to 'nOrbitsPerTF' is never read [clang-analyzer-deadcode.DeadStores] PWGMM/Lumi/Tasks/lumiStability.cxx:296:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:332:31: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:338:78: warning: no header providing "o2::constants::lhc::LHCOrbitMUS" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:352:35: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:355:35: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGMM/Lumi/Tasks/lumiStability.cxx:356:35: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGMM/Lumi/Tasks/lumiStability.cxx:434:7: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStability.cxx:490:9: warning: Value stored to 'deltaIndex' is never read [clang-analyzer-deadcode.DeadStores] PWGMM/Lumi/Tasks/lumiStability.cxx:491:9: warning: Value stored to 'deltaBC' is never read [clang-analyzer-deadcode.DeadStores] PWGMM/Lumi/Tasks/lumiStability.cxx:638:11: warning: Value stored to 'deltaIndex' is never read [clang-analyzer-deadcode.DeadStores] PWGMM/Lumi/Tasks/lumiStability.cxx:639:11: warning: Value stored to 'deltaBC' is never read [clang-analyzer-deadcode.DeadStores] PWGMM/Lumi/Tasks/lumiStability.cxx:775:9: warning: Value stored to 'deltaIndex' is never read [clang-analyzer-deadcode.DeadStores] PWGMM/Lumi/Tasks/lumiStability.cxx:776:9: warning: Value stored to 'deltaBC' is never read [clang-analyzer-deadcode.DeadStores] PWGMM/Lumi/Tasks/lumiStability.cxx:932:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx` ```text PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:19:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:30:1: warning: included header limits is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:45:42: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:57:8: warning: constructor does not initialize these fields: bcSOR, nBCsPerTF [cppcoreguidelines-pro-type-member-init] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:58:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:60:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:84:8: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:84:35: warning: no header providing "o2::constants::lhc::LHCMaxBunches" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:89:13: warning: member 'nBCsPerOrbit' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:96:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:96:48: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:98:13: warning: member 'nTriggers' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:105:13: warning: member 'nBCCategories' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:113:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:127:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:131:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:137:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:143:30: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:143:194: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:156:24: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:156:29: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:264:83: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:298:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx:350:40: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] ``` #### `PWGMM/Lumi/Tasks/lumiStabilityPP.cxx` ```text PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:19:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:20:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:21:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:32:1: warning: included header limits is not used directly [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:75:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:77:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:83:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:100:8: warning: constructor does not initialize these fields: bcSOR, nBCsPerTF [cppcoreguidelines-pro-type-member-init] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:102:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:111:8: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:111:35: warning: no header providing "o2::constants::lhc::LHCMaxBunches" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:113:13: warning: member 'nBCsPerOrbit' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:120:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:122:55: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:132:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:144:9: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:144:18: warning: member 'timeAxis' of type 'const AxisSpec' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:144:69: warning: member 'bcIDAxis' of type 'const AxisSpec' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:158:51: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:158:169: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:164:44: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:192:5: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGMM/Lumi/Tasks/lumiStabilityPP.cxx:273:43: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] ``` #### `PWGMM/Lumi/macros/merger.C` ```text PWGMM/Lumi/macros/merger.C:18:3: error: unknown type name 'TFile' [clang-diagnostic-error] PWGMM/Lumi/macros/merger.C:18:20: error: unknown type name 'TFile' [clang-diagnostic-error] PWGMM/Lumi/macros/merger.C:19:3: error: unknown type name 'TTree' [clang-diagnostic-error] PWGMM/Lumi/macros/merger.C:21:3: error: unknown type name 'TFile' [clang-diagnostic-error] PWGMM/Lumi/macros/merger.C:21:21: error: unknown type name 'TFile' [clang-diagnostic-error] PWGMM/Lumi/macros/merger.C:22:3: error: unknown type name 'TTree' [clang-diagnostic-error] PWGMM/Lumi/macros/merger.C:22:20: error: unknown type name 'TTree' [clang-diagnostic-error] PWGMM/Lumi/macros/merger.C:24:3: error: unknown type name 'TList' [clang-diagnostic-error] PWGMM/Lumi/macros/merger.C:25:3: error: unknown type name 'TIter' [clang-diagnostic-error] PWGMM/Lumi/macros/merger.C:27:3: error: unknown type name 'ULong64_t' [clang-diagnostic-error] PWGMM/Lumi/macros/merger.C:28:10: warning: variable 'fVertexX' is not initialized [cppcoreguidelines-init-variables] PWGMM/Lumi/macros/merger.C:29:10: warning: variable 'fVertexY' is not initialized [cppcoreguidelines-init-variables] PWGMM/Lumi/macros/merger.C:30:10: warning: variable 'fVertexZ' is not initialized [cppcoreguidelines-init-variables] PWGMM/Lumi/macros/merger.C:31:10: warning: variable 'fVertexXY' is not initialized [cppcoreguidelines-init-variables] PWGMM/Lumi/macros/merger.C:32:10: warning: variable 'fVertexXX' is not initialized [cppcoreguidelines-init-variables] PWGMM/Lumi/macros/merger.C:33:10: warning: variable 'fVertexYY' is not initialized [cppcoreguidelines-init-variables] PWGMM/Lumi/macros/merger.C:34:10: warning: variable 'fVertexChi2' is not initialized [cppcoreguidelines-init-variables] PWGMM/Lumi/macros/merger.C:35:7: warning: variable 'fNContrib' is not initialized [cppcoreguidelines-init-variables] PWGMM/Lumi/macros/merger.C:49:10: error: use of undeclared identifier 'TDirectoryFile' [clang-diagnostic-error] PWGMM/Lumi/macros/merger.C:49:26: error: use of undeclared identifier 'dir' [clang-diagnostic-error] PWGMM/Lumi/macros/merger.C:49:33: error: use of undeclared identifier 'TDirectoryFile' [clang-diagnostic-error] PWGMM/Lumi/macros/merger.C:49:48: error: expected expression [clang-diagnostic-error] PWGMM/Lumi/macros/merger.C:50:13: error: use of undeclared identifier 'TTree' [clang-diagnostic-error] PWGMM/Lumi/macros/merger.C:50:19: error: expected expression [clang-diagnostic-error] ``` #### `PWGMM/Lumi/macros/non_fac.C` ```text PWGMM/Lumi/macros/non_fac.C:15:1: error: unknown type name 'TFile' [clang-diagnostic-error] PWGMM/Lumi/macros/non_fac.C:15:18: error: unknown type name 'TFile' [clang-diagnostic-error] PWGMM/Lumi/macros/non_fac.C:16:1: error: unknown type name 'TTree' [clang-diagnostic-error] PWGMM/Lumi/macros/non_fac.C:18:1: error: unknown type name 'ULong64_t' [clang-diagnostic-error] PWGMM/Lumi/macros/non_fac.C:33:11: error: unknown type name 'Int_t' [clang-diagnostic-error] PWGMM/Lumi/macros/non_fac.C:33:24: error: unknown type name 'Double_t' [clang-diagnostic-error] PWGMM/Lumi/macros/non_fac.C:33:39: error: unknown type name 'Double_t' [clang-diagnostic-error] PWGMM/Lumi/macros/non_fac.C:33:52: error: unknown type name 'Double_t' [clang-diagnostic-error] PWGMM/Lumi/macros/non_fac.C:33:67: error: unknown type name 'Int_t' [clang-diagnostic-error] PWGMM/Lumi/macros/non_fac.C:35:3: error: unknown type name 'TMatrixD' [clang-diagnostic-error] PWGMM/Lumi/macros/non_fac.C:38:10: error: use of undeclared identifier 'TTree' [clang-diagnostic-error] PWGMM/Lumi/macros/non_fac.C:38:16: error: expected expression [clang-diagnostic-error] PWGMM/Lumi/macros/non_fac.C:75:5: error: unknown type name 'Double_t' [clang-diagnostic-error] PWGMM/Lumi/macros/non_fac.C:77:5: error: unknown type name 'Double_t' [clang-diagnostic-error] PWGMM/Lumi/macros/non_fac.C:77:20: error: use of undeclared identifier 'TMath' [clang-diagnostic-error] PWGMM/Lumi/macros/non_fac.C:77:31: error: use of undeclared identifier 'TMath' [clang-diagnostic-error] PWGMM/Lumi/macros/non_fac.C:77:44: error: use of undeclared identifier 'TMath' [clang-diagnostic-error] PWGMM/Lumi/macros/non_fac.C:78:12: error: use of undeclared identifier 'TMath' [clang-diagnostic-error] PWGMM/Lumi/macros/non_fac.C:79:12: error: use of undeclared identifier 'TMath' [clang-diagnostic-error] ``` #### `PWGMM/Mult/Core/include/Axes.h` ```text PWGMM/Mult/Core/include/Axes.h:20:23: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGMM/Mult/Core/include/Axes.h:54:6: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGMM/Mult/Core/include/Axes.h:54:42: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `PWGMM/Mult/DataModel/bestCollisionTable.h` ```text PWGMM/Mult/DataModel/bestCollisionTable.h:28:61: warning: no header providing "int32_t" is directly included [misc-include-cleaner] ``` #### `PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx` ```text PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:44:65: warning: no header providing "ROOT::Math::MatRepSym" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:45:38: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:54:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:55:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:61:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:72:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:81:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:84:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:93:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:96:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:105:53: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:122:31: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:122:36: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:173:5: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:173:10: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:175:16: warning: no header providing "o2::track::TrackParametrization" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:186:35: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:186:59: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:209:36: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:242:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:263:7: warning: Value stored to 'dcaInfo' is never read [clang-analyzer-deadcode.DeadStores] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:288:26: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:349:7: warning: Value stored to 'dcaInfo' is never read [clang-analyzer-deadcode.DeadStores] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:429:5: warning: uninitialized record type: 'dcaInfOrig' [cppcoreguidelines-pro-type-member-init] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:430:5: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx:467:19: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `PWGMM/Mult/TableProducer/particles2tracks.cxx` ```text PWGMM/Mult/TableProducer/particles2tracks.cxx:30:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/particles2tracks.cxx:35:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/particles2tracks.cxx:37:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/particles2tracks.cxx:63:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGMM/Mult/TableProducer/percentiles.cxx` ```text PWGMM/Mult/TableProducer/percentiles.cxx:36:8: warning: constructor does not initialize these fields: pdg, ccdb [cppcoreguidelines-pro-type-member-init] PWGMM/Mult/TableProducer/percentiles.cxx:37:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/percentiles.cxx:38:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/percentiles.cxx:39:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/percentiles.cxx:46:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/percentiles.cxx:59:17: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/percentiles.cxx:65:48: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/percentiles.cxx:66:48: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/percentiles.cxx:67:48: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/percentiles.cxx:68:48: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/percentiles.cxx:75:48: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/percentiles.cxx:76:48: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/percentiles.cxx:82:3: warning: no header providing "TH1F" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/percentiles.cxx:85:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/percentiles.cxx:87:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/percentiles.cxx:88:48: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/percentiles.cxx:106:57: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/percentiles.cxx:106:93: warning: no header providing "o2::aod::mcparticle::enums::PhysicalPrimary" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/percentiles.cxx:107:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/percentiles.cxx:122:14: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/percentiles.cxx:138:97: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/percentiles.cxx:140:104: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] ``` #### `PWGMM/Mult/TableProducer/reducer.cxx` ```text PWGMM/Mult/TableProducer/reducer.cxx:26:51: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:31:57: warning: no header providing "o2::aod::BcSels" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:32:99: warning: no header providing "o2::aod::MultsExtraMC" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:34:78: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:34:91: warning: no header providing "o2::aod::FT0Mults" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:34:106: warning: no header providing "o2::aod::FDDMults" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:34:121: warning: no header providing "o2::aod::ZDCMults" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:34:136: warning: no header providing "o2::aod::PVMults" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:36:78: warning: no header providing "o2::aod::TrackSelection" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:36:99: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:38:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:44:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:45:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:47:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:66:15: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:85:32: warning: no header providing "TMath::Beta" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:85:106: warning: no header providing "TMath::Power" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:94:48: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:95:61: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:96:65: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:97:75: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:98:67: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:101:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:114:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:117:19: warning: no header providing "std::lower_bound" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:122:17: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:130:10: warning: no header providing "std::fill" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:158:86: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:158:110: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:159:66: warning: no header providing "o2::aod::track::trackCutFlag" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:160:117: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:172:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:248:12: warning: no header providing "std::fill" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:264:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:268:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducer.cxx:277:14: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `PWGMM/Mult/TableProducer/reducerPostprocess.cxx` ```text PWGMM/Mult/TableProducer/reducerPostprocess.cxx:23:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducerPostprocess.cxx:24:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGMM/Mult/TableProducer/reducerPostprocess.cxx:27:18: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] ``` #### `PWGMM/Mult/Tasks/assessment-mft.cxx` ```text PWGMM/Mult/Tasks/assessment-mft.cxx:29:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/assessment-mft.cxx:33:52: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/assessment-mft.cxx:33:83: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/assessment-mft.cxx:41:21: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/assessment-mft.cxx:41:65: warning: no header providing "o2::aod::MFTTracks" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/assessment-mft.cxx:41:95: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/assessment-mft.cxx:46:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `PWGMM/Mult/Tasks/dndeta-hi.cxx` ```text PWGMM/Mult/Tasks/dndeta-hi.cxx:13:1: warning: included header bestCollisionTable.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:15:1: warning: included header SelectorCuts.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:16:1: warning: included header CandidateReconstructionTables.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:17:1: warning: included header CandidateSelectionTables.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:21:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:22:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:23:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:29:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:30:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:31:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:37:1: warning: included header RuntimeError.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:39:1: warning: included header GlobalTrackID.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:40:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:42:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:43:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:44:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:45:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:46:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:47:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:49:1: warning: included header array is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:50:1: warning: included header chrono is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:53:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:67:38: warning: no header providing "o2::aod::pidTPCPi" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:67:53: warning: no header providing "o2::aod::pidTPCKa" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:67:68: warning: no header providing "o2::aod::pidTPCPr" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:67:83: warning: no header providing "o2::aod::pidTOFPi" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:67:98: warning: no header providing "o2::aod::pidTOFPr" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:78:14: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:78:21: warning: no header providing "Bool_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:149:1: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:154:33: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:168:18: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:183:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGMM/Mult/Tasks/dndeta-hi.cxx:187:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:200:47: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:207:39: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:211:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:212:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:243:17: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:258:31: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:279:168: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:279:192: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:282:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:289:31: warning: no header providing "std::decay_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:484:7: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:640:17: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-hi.cxx:829:11: warning: Value stored to 'cent' is never read [clang-analyzer-deadcode.DeadStores] PWGMM/Mult/Tasks/dndeta-hi.cxx:832:11: warning: Value stored to 'cent' is never read [clang-analyzer-deadcode.DeadStores] PWGMM/Mult/Tasks/dndeta-hi.cxx:842:14: warning: Value stored to 'pTrack' during its initialization is never read [clang-analyzer-deadcode.DeadStores] PWGMM/Mult/Tasks/dndeta-hi.cxx:843:14: warning: Value stored to 'nTrack' during its initialization is never read [clang-analyzer-deadcode.DeadStores] PWGMM/Mult/Tasks/dndeta-hi.cxx:847:13: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGMM/Mult/Tasks/dndeta-hi.cxx:848:13: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ``` #### `PWGMM/Mult/Tasks/dndeta-mft.cxx` ```text PWGMM/Mult/Tasks/dndeta-mft.cxx:18:1: warning: included header chrono is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:21:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:26:1: warning: included header RuntimeError.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:31:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:33:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:35:1: warning: included header GlobalTrackID.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:36:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:45:1: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:48:33: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:67:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGMM/Mult/Tasks/dndeta-mft.cxx:73:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:90:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:95:9: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:114:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:129:31: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:129:36: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:236:33: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:290:43: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:315:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:315:31: warning: no header providing "std::decay_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:318:55: warning: no header providing "o2::aod::evsel::kIsBBT0A" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:319:55: warning: no header providing "o2::aod::evsel::kIsBBT0C" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:345:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:358:46: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:358:70: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta-mft.cxx:548:43: warning: no header providing "o2::aod::mcparticle::enums::PhysicalPrimary" is directly included [misc-include-cleaner] ``` #### `PWGMM/Mult/Tasks/dndeta.cxx` ```text PWGMM/Mult/Tasks/dndeta.cxx:21:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:22:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:43:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGMM/Mult/Tasks/dndeta.cxx:49:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:54:48: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:88:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:91:20: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:91:46: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:93:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:99:21: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:105:18: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:111:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:116:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:118:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:122:39: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:122:44: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:130:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:131:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:134:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:135:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:139:45: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:140:42: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:142:107: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:143:117: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:144:123: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:145:127: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:146:117: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:148:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:149:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:150:38: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:151:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:152:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:153:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:154:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:155:38: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:156:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:158:50: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:159:49: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:160:45: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:161:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:162:45: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:163:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:164:50: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:165:49: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:166:51: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:171:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:172:39: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:174:107: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:175:117: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:176:123: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:177:127: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:178:117: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:180:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:181:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:182:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:183:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:184:41: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:185:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:186:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:187:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:188:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:190:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:191:46: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:192:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:193:41: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:194:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:195:41: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:196:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:197:46: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:198:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:209:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:210:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:211:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:212:41: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:213:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:214:45: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:215:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:216:46: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:217:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:218:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:220:41: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:221:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:224:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:225:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:242:41: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:247:107: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:248:113: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:249:107: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:250:117: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:251:123: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:252:127: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:264:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:265:41: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:266:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:267:38: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:268:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:269:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:270:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:271:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:272:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:273:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:275:38: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:276:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:279:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:280:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:298:38: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:303:107: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:304:113: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:305:107: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:306:117: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:307:123: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:308:127: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:312:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:313:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:314:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:315:51: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:316:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:318:37: warning: no header providing "fmt::format" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:323:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:324:41: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:325:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:326:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:327:45: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:334:50: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:335:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:336:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:337:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:338:46: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:339:54: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:340:57: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:341:65: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:342:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:343:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:350:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:351:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:352:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:353:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:354:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:355:51: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:356:54: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:357:62: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:358:32: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:359:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/dndeta.cxx:371:17: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:444:86: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:444:110: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:446:117: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:462:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:462:104: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:462:129: warning: no header providing "o2::aod::track::PVContributor" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:709:22: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndeta.cxx:831:106: warning: no header providing "o2::aod::mcparticle::enums::PhysicalPrimary" is directly included [misc-include-cleaner] ``` #### `PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx` ```text PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:27:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:30:1: warning: included header GeomConstants.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:35:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:40:1: warning: included header RuntimeError.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:43:1: warning: included header GlobalTrackID.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:50:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:55:1: warning: included header numeric is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:60:65: warning: no header providing "ROOT::Math::MatRepSym" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:109:8: warning: constructor does not initialize these fields: pdg, ccdb, gCurrentHadronicRate [cppcoreguidelines-pro-type-member-init] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:112:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:112:19: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:112:30: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:119:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:122:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:132:83: warning: no header providing "o2::framework::HistPtr" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:145:18: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:150:54: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:216:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:218:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:222:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:224:27: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:227:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:240:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:242:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:325:29: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:325:63: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:343:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:374:72: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:484:95: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:1068:12: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:1071:100: warning: no header providing "std::format" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:1148:49: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:1148:85: warning: no header providing "o2::aod::mcparticle::enums::PhysicalPrimary" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:1554:53: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:1554:133: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:1571:84: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:1577:88: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:1590:50: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:1597:50: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeNarrow" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:1603:94: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStrict" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:1609:88: warning: no header providing "o2::aod::evsel::kNoCollInRofStrict" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:1615:90: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:1621:94: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:1714:31: warning: no header providing "std::decay_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:1716:41: warning: no header providing "o2::aod::evsel::kIsBBT0A" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:1717:41: warning: no header providing "o2::aod::evsel::kIsBBT0C" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:1974:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:3679:7: warning: uninitialized record type: 'dcaInfOrig' [cppcoreguidelines-pro-type-member-init] PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:3680:7: warning: uninitialized record type: 'dcaInfo' [cppcoreguidelines-pro-type-member-init] ``` #### `PWGMM/Mult/Tasks/effpt-mft.cxx` ```text PWGMM/Mult/Tasks/effpt-mft.cxx:16:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/effpt-mft.cxx:17:1: warning: included header RuntimeError.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/effpt-mft.cxx:21:1: warning: included header GlobalTrackID.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/effpt-mft.cxx:22:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/effpt-mft.cxx:24:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/effpt-mft.cxx:25:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/effpt-mft.cxx:26:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/effpt-mft.cxx:27:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/effpt-mft.cxx:28:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/effpt-mft.cxx:35:1: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/effpt-mft.cxx:36:33: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/effpt-mft.cxx:41:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGMM/Mult/Tasks/effpt-mft.cxx:45:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/effpt-mft.cxx:51:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/effpt-mft.cxx:54:50: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/effpt-mft.cxx:59:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/effpt-mft.cxx:88:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/effpt-mft.cxx:95:62: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/effpt-mft.cxx:95:98: warning: no header providing "o2::aod::mcparticle::enums::PhysicalPrimary" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/effpt-mft.cxx:164:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] ``` #### `PWGMM/Mult/Tasks/flatenicityFV0.cxx` ```text PWGMM/Mult/Tasks/flatenicityFV0.cxx:14:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/flatenicityFV0.cxx:21:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/flatenicityFV0.cxx:22:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/flatenicityFV0.cxx:23:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/flatenicityFV0.cxx:25:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/flatenicityFV0.cxx:36:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flatenicityFV0.cxx:49:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flatenicityFV0.cxx:53:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flatenicityFV0.cxx:60:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flatenicityFV0.cxx:66:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flatenicityFV0.cxx:70:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flatenicityFV0.cxx:72:34: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flatenicityFV0.cxx:88:20: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/flatenicityFV0.cxx:95:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/flatenicityFV0.cxx:128:35: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flatenicityFV0.cxx:296:26: warning: no header providing "TMath::Power" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flatenicityFV0.cxx:299:25: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flatenicityFV0.cxx:389:26: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flatenicityFV0.cxx:410:10: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flatenicityFV0.cxx:417:17: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flatenicityFV0.cxx:489:9: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] ``` #### `PWGMM/Mult/Tasks/flattenicty-chrg.cxx` ```text PWGMM/Mult/Tasks/flattenicty-chrg.cxx:22:1: warning: included header string_view is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:25:1: warning: included header filterTables.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:26:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:30:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:36:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:38:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:40:1: warning: included header Digit.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:41:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:52:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:57:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:63:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:72:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:86:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:88:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:90:28: warning: no header providing "o2::base::NameConf" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:121:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:123:43: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:129:42: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:197:31: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:353:12: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:354:39: warning: no header providing "o2::fit::Triggers" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:357:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:357:29: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:363:17: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:386:10: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:455:9: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/flattenicty-chrg.cxx:538:23: warning: no header providing "o2::math_utils::bringTo02Pi" is directly included [misc-include-cleaner] ``` #### `PWGMM/Mult/Tasks/heavy-ion-mult.cxx` ```text PWGMM/Mult/Tasks/heavy-ion-mult.cxx:21:1: warning: included header Index.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:22:1: warning: included header bestCollisionTable.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:27:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:28:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:34:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:35:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:36:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:42:1: warning: included header GlobalTrackID.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:43:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:46:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:50:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:67:110: warning: no header providing "o2::aod::pidTPCFullPi" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:67:129: warning: no header providing "o2::aod::pidTPCFullPr" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:110:1: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:113:22: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:123:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:125:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:125:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:126:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:145:60: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:167:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:178:42: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:181:29: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:181:34: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:198:44: warning: no header providing "o2::framework::kTHnSparseD" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:200:52: warning: no header providing "o2::framework::kTH3D" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:201:50: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:227:32: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:232:32: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:237:62: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:369:93: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:369:117: warning: no header providing "o2::aod::track::ITS" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:371:124: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:565:19: warning: no header providing "Int_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:570:114: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/heavy-ion-mult.cxx:598:15: warning: no header providing "std::find" is directly included [misc-include-cleaner] ``` #### `PWGMM/Mult/Tasks/mcdata_split_test.cxx` ```text PWGMM/Mult/Tasks/mcdata_split_test.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/mcdata_split_test.cxx:22:1: warning: included header GlobalTrackID.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/mcdata_split_test.cxx:34:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGMM/Mult/Tasks/mcdata_split_test.cxx:36:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/mcdata_split_test.cxx:40:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/mcdata_split_test.cxx:40:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/mcdata_split_test.cxx:42:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/mcdata_split_test.cxx:54:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/mcdata_split_test.cxx:57:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/mcdata_split_test.cxx:63:38: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/mcdata_split_test.cxx:81:65: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/mcdata_split_test.cxx:97:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/mcdata_split_test.cxx:145:22: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/mcdata_split_test.cxx:169:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGMM/Mult/Tasks/multiplicityPbPb.cxx` ```text PWGMM/Mult/Tasks/multiplicityPbPb.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/multiplicityPbPb.cxx:22:1: warning: included header GlobalTrackID.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/multiplicityPbPb.cxx:32:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGMM/Mult/Tasks/multiplicityPbPb.cxx:34:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/multiplicityPbPb.cxx:38:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/multiplicityPbPb.cxx:38:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/multiplicityPbPb.cxx:40:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/multiplicityPbPb.cxx:52:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/multiplicityPbPb.cxx:55:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/multiplicityPbPb.cxx:68:38: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/multiplicityPbPb.cxx:94:65: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/multiplicityPbPb.cxx:115:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/multiplicityPbPb.cxx:133:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/multiplicityPbPb.cxx:160:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/multiplicityPbPb.cxx:181:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGMM/Mult/Tasks/pseudoEffMFT.cxx` ```text PWGMM/Mult/Tasks/pseudoEffMFT.cxx:19:1: warning: included header Index.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:25:1: warning: included header CollisionAssociationTables.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:27:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:28:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:37:1: warning: included header RuntimeError.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:40:1: warning: included header GlobalTrackID.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:45:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:50:1: warning: included header numeric is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:293:8: warning: constructor does not initialize these fields: pdg, ccdb, mOrbit, mPrevOrbit, layerMasks, gCurrentHadronicRate [cppcoreguidelines-pro-type-member-init] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:298:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:313:54: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:361:18: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:368:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:370:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:375:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:378:8: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:379:14: warning: no header providing "TH2I" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:380:36: warning: member 'mapping' of type 'const o2::itsmft::ChipMappingMFT' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:381:57: warning: member 'chipMap' of type 'const std::array' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:390:27: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:393:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:396:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:398:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:413:29: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:413:63: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:453:61: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:468:39: warning: no header providing "THn" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:513:49: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:513:85: warning: no header providing "o2::aod::mcparticle::enums::PhysicalPrimary" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:552:37: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:861:53: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:861:133: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:878:84: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:884:88: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:897:50: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:904:50: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeNarrow" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:910:94: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStrict" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:916:88: warning: no header providing "o2::aod::evsel::kNoCollInRofStrict" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:922:90: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:928:94: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:975:31: warning: no header providing "std::decay_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:977:41: warning: no header providing "o2::aod::evsel::kIsBBT0A" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/pseudoEffMFT.cxx:978:41: warning: no header providing "o2::aod::evsel::kIsBBT0C" is directly included [misc-include-cleaner] ``` #### `PWGMM/Mult/Tasks/puremc-dndeta.cxx` ```text PWGMM/Mult/Tasks/puremc-dndeta.cxx:17:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/puremc-dndeta.cxx:18:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/puremc-dndeta.cxx:31:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGMM/Mult/Tasks/puremc-dndeta.cxx:35:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/puremc-dndeta.cxx:36:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/puremc-dndeta.cxx:37:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/puremc-dndeta.cxx:43:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/puremc-dndeta.cxx:46:17: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:46:65: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/puremc-dndeta.cxx:47:20: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:51:8: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/puremc-dndeta.cxx:51:19: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/puremc-dndeta.cxx:53:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/puremc-dndeta.cxx:55:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/puremc-dndeta.cxx:57:42: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/puremc-dndeta.cxx:57:59: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:60:43: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:64:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/puremc-dndeta.cxx:88:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:92:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:93:32: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:94:32: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:97:42: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:100:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:101:31: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/puremc-dndeta.cxx:101:54: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:103:107: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:104:113: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:105:107: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:106:117: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:107:123: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:108:127: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:111:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:112:67: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:115:45: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:118:44: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:119:67: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:122:45: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:148:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:163:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/puremc-dndeta.cxx:167:23: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/puremc-dndeta.cxx:167:57: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/puremc-dndeta.cxx:168:38: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:170:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/puremc-dndeta.cxx:181:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:184:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:189:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:192:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/puremc-dndeta.cxx:215:37: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:240:39: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:248:41: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:282:49: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/Mult/Tasks/puremc-dndeta.cxx:296:53: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ``` #### `PWGMM/Mult/Tasks/run2dndeta.cxx` ```text PWGMM/Mult/Tasks/run2dndeta.cxx:15:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/run2dndeta.cxx:16:1: warning: included header RuntimeError.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/run2dndeta.cxx:20:1: warning: included header GlobalTrackID.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/run2dndeta.cxx:21:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/run2dndeta.cxx:25:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/run2dndeta.cxx:26:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/run2dndeta.cxx:34:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGMM/Mult/Tasks/run2dndeta.cxx:39:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/run2dndeta.cxx:44:39: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/run2dndeta.cxx:47:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/run2dndeta.cxx:51:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/run2dndeta.cxx:54:57: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/run2dndeta.cxx:57:83: warning: no header providing "M_PI" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/run2dndeta.cxx:62:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/run2dndeta.cxx:64:36: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/run2dndeta.cxx:102:28: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/run2dndeta.cxx:110:68: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/run2dndeta.cxx:110:88: warning: no header providing "o2::aod::track::TrackTypeEnum" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/run2dndeta.cxx:113:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/run2dndeta.cxx:187:98: warning: no header providing "o2::aod::mcparticle::enums::PhysicalPrimary" is directly included [misc-include-cleaner] ``` #### `PWGMM/Mult/Tasks/vertexing-fwd.cxx` ```text PWGMM/Mult/Tasks/vertexing-fwd.cxx:23:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/vertexing-fwd.cxx:29:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/vertexing-fwd.cxx:30:1: warning: included header LHCConstants.h is not used directly [misc-include-cleaner] PWGMM/Mult/Tasks/vertexing-fwd.cxx:36:65: warning: no header providing "ROOT::Math::MatRepSym" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/vertexing-fwd.cxx:37:38: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/vertexing-fwd.cxx:43:1: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/vertexing-fwd.cxx:48:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/vertexing-fwd.cxx:48:15: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/vertexing-fwd.cxx:50:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/vertexing-fwd.cxx:52:66: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/vertexing-fwd.cxx:106:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/vertexing-fwd.cxx:108:33: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/vertexing-fwd.cxx:108:38: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/vertexing-fwd.cxx:142:7: warning: Value stored to 'dcaXY' is never read [clang-analyzer-deadcode.DeadStores] PWGMM/Mult/Tasks/vertexing-fwd.cxx:243:11: warning: no header providing "printf" is directly included [misc-include-cleaner] PWGMM/Mult/Tasks/vertexing-fwd.cxx:265:11: warning: variable 'dcaXY' is not initialized [cppcoreguidelines-init-variables] PWGMM/Mult/Tasks/vertexing-fwd.cxx:308:11: warning: no header providing "std::find" is directly included [misc-include-cleaner] ``` #### `PWGMM/UE/Tasks/dedxAnalysis.cxx` ```text PWGMM/UE/Tasks/dedxAnalysis.cxx:19:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:21:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:22:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:24:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:29:1: warning: included header CcdbApi.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:33:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:38:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:39:1: warning: included header V0.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:54:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGMM/UE/Tasks/dedxAnalysis.cxx:57:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:60:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:110:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:152:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:165:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:167:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:167:34: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:172:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:186:84: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:195:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:197:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:206:41: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:264:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/dedxAnalysis.cxx:266:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/dedxAnalysis.cxx:287:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/dedxAnalysis.cxx:289:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/dedxAnalysis.cxx:292:59: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/dedxAnalysis.cxx:294:59: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/dedxAnalysis.cxx:303:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/dedxAnalysis.cxx:305:58: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/dedxAnalysis.cxx:308:57: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/dedxAnalysis.cxx:310:57: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/dedxAnalysis.cxx:329:40: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:531:24: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:560:34: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:565:33: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:566:16: warning: no header providing "std::fmod" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/dedxAnalysis.cxx:1063:32: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ``` #### `PWGMM/UE/Tasks/ue-zdc-analysys.cxx` ```text PWGMM/UE/Tasks/ue-zdc-analysys.cxx:20:1: warning: included header EventSelectionParams.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/ue-zdc-analysys.cxx:21:1: warning: included header TriggerAliases.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/ue-zdc-analysys.cxx:22:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/ue-zdc-analysys.cxx:23:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/ue-zdc-analysys.cxx:24:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/ue-zdc-analysys.cxx:25:1: warning: included header GlobalTrackID.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/ue-zdc-analysys.cxx:26:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/ue-zdc-analysys.cxx:28:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/ue-zdc-analysys.cxx:29:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/ue-zdc-analysys.cxx:30:1: warning: included header TObjArray.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/ue-zdc-analysys.cxx:45:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/ue-zdc-analysys.cxx:64:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/ue-zdc-analysys.cxx:66:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/ue-zdc-analysys.cxx:69:65: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/ue-zdc-analysys.cxx:145:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/ue-zdc-analysys.cxx:151:18: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/ue-zdc-analysys.cxx:175:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/ue-zdc-analysys.cxx:288:31: warning: no header providing "std::pow" is directly included [misc-include-cleaner] ``` #### `PWGMM/UE/Tasks/uecharged.cxx` ```text PWGMM/UE/Tasks/uecharged.cxx:18:1: warning: included header mcCentrality.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:19:1: warning: included header collisionCuts.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:21:1: warning: included header mcParticle.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:24:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:29:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:33:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:36:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:37:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:38:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:48:22: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:48:32: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:48:42: warning: no header providing "o2::aod::Timestamps" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:48:72: warning: no header providing "o2::aod::Run3MatchedToBCSparse" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:49:19: warning: no header providing "o2::aod::FT0s" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:51:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGMM/UE/Tasks/uecharged.cxx:92:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:92:26: warning: no header providing "o2::framework::O2DatabasePDG" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:95:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:107:39: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:108:41: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:108:54: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:111:31: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:112:33: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:115:30: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:115:57: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:116:110: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:117:35: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:120:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:121:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:121:56: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:123:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:125:39: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:127:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:152:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:155:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:161:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:182:47: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:196:38: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/uecharged.cxx:197:40: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/uecharged.cxx:198:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/uecharged.cxx:199:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/uecharged.cxx:200:31: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/uecharged.cxx:201:30: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/uecharged.cxx:202:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/uecharged.cxx:203:32: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/uecharged.cxx:206:28: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/uecharged.cxx:206:121: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:230:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/uecharged.cxx:231:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/uecharged.cxx:232:22: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/uecharged.cxx:237:29: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/uecharged.cxx:238:28: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/uecharged.cxx:239:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/uecharged.cxx:240:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/uecharged.cxx:244:36: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/uecharged.cxx:245:29: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/uecharged.cxx:246:28: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGMM/UE/Tasks/uecharged.cxx:262:49: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:266:95: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:380:69: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:386:65: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:420:73: warning: no header providing "o2::aod::evsel::kIsTriggerTVX" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:420:132: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGMM/UE/Tasks/uecharged.cxx:624:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` ### PWGUD #### `PWGUD/AQC/FITtest.cxx` ```text PWGUD/AQC/FITtest.cxx:17:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] PWGUD/AQC/FITtest.cxx:23:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGUD/AQC/FITtest.cxx:26:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGUD/AQC/FITtest.cxx:28:1: warning: included header BCRange.h is not used directly [misc-include-cleaner] PWGUD/AQC/FITtest.cxx:30:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGUD/AQC/FITtest.cxx:40:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/AQC/FITtest.cxx:53:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/AQC/FITtest.cxx:59:84: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/AQC/FITtest.cxx:349:5: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGUD/AQC/FITtest.cxx:363:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/AQC/FITtest.cxx:363:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/AQC/FITtest.cxx:380:12: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGUD/AQC/FITtest.cxx:381:22: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/AQC/FITtest.cxx:546:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGUD/AQC/udQC.cxx` ```text PWGUD/AQC/udQC.cxx:27:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGUD/AQC/udQC.cxx:33:8: warning: constructor does not initialize these fields: maxdEdxTPC, maxdEdxTOF [cppcoreguidelines-pro-type-member-init] PWGUD/AQC/udQC.cxx:39:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:48:3: warning: no header providing "DGCutparHolder" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:49:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:59:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:64:47: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:66:40: warning: no header providing "o2::aod::BcSels" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:67:61: warning: no header providing "o2::aod::TrackSelection" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:67:82: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:67:98: warning: no header providing "o2::aod::TrackSelectionExtension" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:67:128: warning: no header providing "o2::aod::pidTPCFullPi" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:67:147: warning: no header providing "o2::aod::TOFSignal" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:67:163: warning: no header providing "o2::aod::pidTOFbeta" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:72:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:72:31: warning: no header providing "requireGlobalTrackInFilter" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:74:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:85:91: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:150:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/AQC/udQC.cxx:150:52: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/AQC/udQC.cxx:162:33: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/AQC/udQC.cxx:162:52: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/AQC/udQC.cxx:163:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/AQC/udQC.cxx:163:54: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/AQC/udQC.cxx:206:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:206:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:217:18: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:458:14: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:488:22: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:546:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:576:11: warning: variable 'ampFV0A' is not initialized [cppcoreguidelines-init-variables] PWGUD/AQC/udQC.cxx:576:20: warning: variable 'ampFT0A' is not initialized [cppcoreguidelines-init-variables] PWGUD/AQC/udQC.cxx:576:29: warning: variable 'ampFT0C' is not initialized [cppcoreguidelines-init-variables] PWGUD/AQC/udQC.cxx:576:38: warning: variable 'ampFDDA' is not initialized [cppcoreguidelines-init-variables] PWGUD/AQC/udQC.cxx:576:47: warning: variable 'ampFDDC' is not initialized [cppcoreguidelines-init-variables] PWGUD/AQC/udQC.cxx:630:5: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:633:55: warning: no header providing "o2::constants::lhc::LHCMaxBunches" is directly included [misc-include-cleaner] PWGUD/AQC/udQC.cxx:636:11: warning: variable 'ampFV0A' is not initialized [cppcoreguidelines-init-variables] PWGUD/AQC/udQC.cxx:636:20: warning: variable 'ampFT0A' is not initialized [cppcoreguidelines-init-variables] PWGUD/AQC/udQC.cxx:636:29: warning: variable 'ampFT0C' is not initialized [cppcoreguidelines-init-variables] PWGUD/AQC/udQC.cxx:636:38: warning: variable 'ampFDDA' is not initialized [cppcoreguidelines-init-variables] PWGUD/AQC/udQC.cxx:636:47: warning: variable 'ampFDDC' is not initialized [cppcoreguidelines-init-variables] PWGUD/AQC/udQC.cxx:696:12: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `PWGUD/AQC/udQCmidRap.cxx` ```text PWGUD/AQC/udQCmidRap.cxx:22:1: warning: included header FT0Corrected.h is not used directly [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:24:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:26:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:32:8: warning: constructor does not initialize these fields: maxdEdxTPC, maxdEdxTOF [cppcoreguidelines-pro-type-member-init] PWGUD/AQC/udQCmidRap.cxx:43:3: warning: no header providing "DGCutparHolder" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:44:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:54:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:59:47: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:61:40: warning: no header providing "o2::aod::BcSels" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:62:61: warning: no header providing "o2::aod::TrackSelection" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:62:82: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:62:98: warning: no header providing "o2::aod::TrackSelectionExtension" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:62:128: warning: no header providing "o2::aod::pidTPCFullPi" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:62:147: warning: no header providing "o2::aod::pidTPCFullKa" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:62:166: warning: no header providing "o2::aod::pidTPCFullMu" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:62:185: warning: no header providing "o2::aod::pidTPCFullEl" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:62:204: warning: no header providing "o2::aod::TOFSignal" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:62:220: warning: no header providing "o2::aod::pidTOFbeta" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:67:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:67:31: warning: no header providing "requireGlobalTrackInFilter" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:69:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:79:91: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:147:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:147:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:203:24: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:222:24: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:333:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/AQC/udQCmidRap.cxx:460:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGUD/AQC/udQcMuon.cxx` ```text PWGUD/AQC/udQcMuon.cxx:43:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:48:3: warning: no header providing "DGCutparHolder" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:49:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:65:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:70:47: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:72:40: warning: no header providing "o2::aod::BcSels" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:73:61: warning: no header providing "o2::aod::TrackSelection" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:73:82: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:73:98: warning: no header providing "o2::aod::TrackSelectionExtension" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:73:128: warning: no header providing "o2::aod::pidTPCFullEl" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:73:147: warning: no header providing "o2::aod::pidTPCFullMu" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:73:166: warning: no header providing "o2::aod::TOFSignal" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:73:182: warning: no header providing "o2::aod::pidTOFbeta" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:78:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:78:31: warning: no header providing "requireGlobalTrackInFilter" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:80:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:88:91: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:155:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/AQC/udQcMuon.cxx:155:54: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/AQC/udQcMuon.cxx:168:34: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/AQC/udQcMuon.cxx:168:54: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/AQC/udQcMuon.cxx:169:35: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/AQC/udQcMuon.cxx:169:56: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/AQC/udQcMuon.cxx:212:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:212:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:223:18: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:428:33: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:472:14: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:481:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:542:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:572:11: warning: variable 'ampFV0A' is not initialized [cppcoreguidelines-init-variables] PWGUD/AQC/udQcMuon.cxx:572:20: warning: variable 'ampFT0A' is not initialized [cppcoreguidelines-init-variables] PWGUD/AQC/udQcMuon.cxx:572:29: warning: variable 'ampFT0C' is not initialized [cppcoreguidelines-init-variables] PWGUD/AQC/udQcMuon.cxx:572:38: warning: variable 'ampFDDA' is not initialized [cppcoreguidelines-init-variables] PWGUD/AQC/udQcMuon.cxx:572:47: warning: variable 'ampFDDC' is not initialized [cppcoreguidelines-init-variables] PWGUD/AQC/udQcMuon.cxx:627:5: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:630:55: warning: no header providing "o2::constants::lhc::LHCMaxBunches" is directly included [misc-include-cleaner] PWGUD/AQC/udQcMuon.cxx:633:11: warning: variable 'ampFV0A' is not initialized [cppcoreguidelines-init-variables] PWGUD/AQC/udQcMuon.cxx:633:20: warning: variable 'ampFT0A' is not initialized [cppcoreguidelines-init-variables] PWGUD/AQC/udQcMuon.cxx:633:29: warning: variable 'ampFT0C' is not initialized [cppcoreguidelines-init-variables] PWGUD/AQC/udQcMuon.cxx:633:38: warning: variable 'ampFDDA' is not initialized [cppcoreguidelines-init-variables] PWGUD/AQC/udQcMuon.cxx:633:47: warning: variable 'ampFDDC' is not initialized [cppcoreguidelines-init-variables] PWGUD/AQC/udQcMuon.cxx:694:12: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `PWGUD/Core/DGPIDSelector.cxx` ```text PWGUD/Core/DGPIDSelector.cxx:13:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] PWGUD/Core/DGPIDSelector.cxx:17:20: warning: no header providing "TDatabasePDG" is directly included [misc-include-cleaner] PWGUD/Core/DGPIDSelector.cxx:20:3: warning: no header providing "TParticlePDG" is directly included [misc-include-cleaner] PWGUD/Core/DGPIDSelector.cxx:29:1: warning: constructor does not initialize these fields: mnumPart, mcutPID, mcutDetector, mcutType, mcutApply, mptMin, mptMax, mdetValuemin, mdetValuemax [cppcoreguidelines-pro-type-member-init] PWGUD/Core/DGPIDSelector.cxx:58:3: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGUD/Core/DGPIDSelector.cxx:108:8: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGUD/Core/DGPIDSelector.cxx:239:39: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGUD/Core/DGPIDSelector.cxx:282:8: warning: no header providing "std::hash" is directly included [misc-include-cleaner] PWGUD/Core/DGPIDSelector.cxx:287:7: warning: variable 'cnt' is not initialized [cppcoreguidelines-init-variables] PWGUD/Core/DGPIDSelector.cxx:301:14: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGUD/Core/DGPIDSelector.cxx:437:11: warning: no header providing "abs" is directly included [misc-include-cleaner] PWGUD/Core/DGPIDSelector.cxx:515:44: warning: Division by zero [clang-analyzer-core.DivideZero] ``` #### `PWGUD/Core/DGPIDSelector.h` ```text PWGUD/Core/DGPIDSelector.h:15:1: warning: included header projector.h is not used directly [misc-include-cleaner] PWGUD/Core/DGPIDSelector.h:118:23: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGUD/Core/DGPIDSelector.h:297:14: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGUD/Core/DGPIDSelector.h:345:31: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Core/DGPIDSelector.h:382:9: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGUD/Core/DGPIDSelector.h:382:22: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Core/DGPIDSelector.h:394:9: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ``` #### `PWGUD/Core/DGSelector.h` ```text PWGUD/Core/DGSelector.h:20:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGUD/Core/DGSelector.h:119:5: warning: no header providing "TParticlePDG" is directly included [misc-include-cleaner] PWGUD/Core/DGSelector.h:152:14: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGUD/Core/DGSelector.h:281:3: warning: no header providing "ClassDefNV" is directly included [misc-include-cleaner] ``` #### `PWGUD/Core/SGSelector.h` ```text PWGUD/Core/SGSelector.h:27:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGUD/Core/SGSelector.h:88:41: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGUD/Core/SGSelector.h:162:52: warning: no header providing "o2::aod::fwdtrack::ForwardTrackTypeEnum" is directly included [misc-include-cleaner] ``` #### `PWGUD/Core/SGTrackSelector.h` ```text PWGUD/Core/SGTrackSelector.h:19:1: warning: included header SGSelector.h is not used directly [misc-include-cleaner] PWGUD/Core/SGTrackSelector.h:20:1: warning: included header UDTables.h is not used directly [misc-include-cleaner] PWGUD/Core/SGTrackSelector.h:22:1: warning: included header AnalysisDataModel.h is not used directly [misc-include-cleaner] PWGUD/Core/SGTrackSelector.h:23:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGUD/Core/SGTrackSelector.h:24:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGUD/Core/SGTrackSelector.h:25:1: warning: included header runDataProcessing.h is not used directly [misc-include-cleaner] PWGUD/Core/SGTrackSelector.h:28:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGUD/Core/SGTrackSelector.h:30:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGUD/Core/SGTrackSelector.h:39:16: warning: no header providing "std::runtime_error" is directly included [misc-include-cleaner] PWGUD/Core/SGTrackSelector.h:48:50: warning: no header providing "pow" is directly included [misc-include-cleaner] PWGUD/Core/SGTrackSelector.h:70:9: warning: variable 'pi' is not initialized [cppcoreguidelines-init-variables] PWGUD/Core/SGTrackSelector.h:70:13: warning: variable 'ka' is not initialized [cppcoreguidelines-init-variables] PWGUD/Core/SGTrackSelector.h:70:17: warning: variable 'pr' is not initialized [cppcoreguidelines-init-variables] PWGUD/Core/SGTrackSelector.h:71:9: warning: variable 'tpi' is not initialized [cppcoreguidelines-init-variables] PWGUD/Core/SGTrackSelector.h:71:14: warning: variable 'tka' is not initialized [cppcoreguidelines-init-variables] PWGUD/Core/SGTrackSelector.h:71:19: warning: variable 'tpr' is not initialized [cppcoreguidelines-init-variables] PWGUD/Core/SGTrackSelector.h:85:14: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ``` #### `PWGUD/Core/UDFSParser.cxx` ```text PWGUD/Core/UDFSParser.cxx:36:8: warning: no header providing "std::ifstream" is directly included [misc-include-cleaner] PWGUD/Core/UDFSParser.cxx:43:7: warning: variable 'bucket' is not initialized [cppcoreguidelines-init-variables] PWGUD/Core/UDFSParser.cxx:131:29: warning: no header providing "std::find_if" is directly included [misc-include-cleaner] PWGUD/Core/UDFSParser.cxx:132:81: warning: no header providing "std::isdigit" is directly included [misc-include-cleaner] PWGUD/Core/UDFSParser.cxx:154:9: warning: variable 'token' is not initialized [cppcoreguidelines-init-variables] PWGUD/Core/UDFSParser.cxx:159:19: warning: no header providing "strtok_r" is directly included [misc-include-cleaner] PWGUD/Core/UDFSParser.cxx:168:24: warning: no header providing "std::find" is directly included [misc-include-cleaner] ``` #### `PWGUD/Core/UDGoodRunSelector.cxx` ```text PWGUD/Core/UDGoodRunSelector.cxx:28:1: warning: constructor does not initialize these fields: misActive [cppcoreguidelines-pro-type-member-init] PWGUD/Core/UDGoodRunSelector.cxx:121:5: warning: Opened stream never closed. Potential resource leak [clang-analyzer-unix.Stream] PWGUD/Core/UDGoodRunSelector.cxx:127:7: warning: variable 'runNumber' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGUD/Core/UDGoodRunSelector.h` ```text PWGUD/Core/UDGoodRunSelector.h:24:3: warning: constructor does not initialize these fields: misActive [cppcoreguidelines-pro-type-member-init] ``` #### `PWGUD/Core/UDHelpers.h` ```text PWGUD/Core/UDHelpers.h:22:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGUD/Core/UDHelpers.h:23:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGUD/Core/UDHelpers.h:27:1: warning: included header Digit.h is not used directly [misc-include-cleaner] PWGUD/Core/UDHelpers.h:32:1: warning: included header bitset is not used directly [misc-include-cleaner] PWGUD/Core/UDHelpers.h:41:38: warning: no header providing "std::enable_if" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:42:1: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:104:17: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:129:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:318:15: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:319:15: warning: no header providing "std::accumulate" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:470:11: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:544:45: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:556:45: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:567:45: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:578:45: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:589:45: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:599:45: warning: no header providing "o2::aod::evsel::kIsVertexTRDmatched" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:609:45: warning: no header providing "o2::aod::evsel::kIsVertexTOFmatched" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:650:43: warning: no header providing "o2::aod::evsel::kNoBGT0A" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:651:7: warning: no header providing "SETBIT" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:652:43: warning: no header providing "o2::aod::evsel::kNoBGT0C" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:654:42: warning: no header providing "o2::aod::evsel::kIsBBT0A" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:656:42: warning: no header providing "o2::aod::evsel::kIsBBT0C" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:658:43: warning: no header providing "o2::aod::evsel::kNoBGV0A" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:660:42: warning: no header providing "o2::aod::evsel::kIsBBV0A" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:662:43: warning: no header providing "o2::aod::evsel::kNoBGFDA" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:664:43: warning: no header providing "o2::aod::evsel::kNoBGFDC" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:666:42: warning: no header providing "o2::aod::evsel::kIsBBFDA" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:668:42: warning: no header providing "o2::aod::evsel::kIsBBFDC" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:676:77: warning: no header providing "o2::aod::FT0s" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:676:104: warning: no header providing "o2::aod::FV0As" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:676:133: warning: no header providing "o2::aod::FDDs" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:715:37: warning: no header providing "o2::aod::Zdcs" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:715:94: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:717:56: warning: no header providing "o2::aod::zdc::bcId" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:723:38: warning: no header providing "o2::aod::Calos" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:725:59: warning: no header providing "o2::aod::calo::bcId" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:732:44: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGUD/Core/UDHelpers.h:732:67: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] ``` #### `PWGUD/Core/UPCHelpers.h` ```text PWGUD/Core/UPCHelpers.h:17:1: warning: included header UDTables.h is not used directly [misc-include-cleaner] PWGUD/Core/UPCHelpers.h:19:1: warning: included header EventSelectionParams.h is not used directly [misc-include-cleaner] PWGUD/Core/UPCHelpers.h:22:1: warning: included header LHCConstants.h is not used directly [misc-include-cleaner] PWGUD/Core/UPCHelpers.h:29:84: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGUD/Core/UPCHelpers.h:30:45: warning: no header providing "o2::aod::pidTPCFullEl" is directly included [misc-include-cleaner] PWGUD/Core/UPCHelpers.h:30:68: warning: no header providing "o2::aod::pidTPCFullMu" is directly included [misc-include-cleaner] PWGUD/Core/UPCHelpers.h:30:91: warning: no header providing "o2::aod::pidTPCFullPi" is directly included [misc-include-cleaner] PWGUD/Core/UPCHelpers.h:30:114: warning: no header providing "o2::aod::pidTPCFullKa" is directly included [misc-include-cleaner] PWGUD/Core/UPCHelpers.h:30:137: warning: no header providing "o2::aod::pidTPCFullPr" is directly included [misc-include-cleaner] PWGUD/Core/UPCHelpers.h:31:45: warning: no header providing "o2::aod::TOFSignal" is directly included [misc-include-cleaner] PWGUD/Core/UPCHelpers.h:31:65: warning: no header providing "o2::aod::pidTOFbeta" is directly included [misc-include-cleaner] PWGUD/Core/UPCHelpers.h:32:45: warning: no header providing "o2::aod::pidTOFFullEl" is directly included [misc-include-cleaner] PWGUD/Core/UPCHelpers.h:32:68: warning: no header providing "o2::aod::pidTOFFullMu" is directly included [misc-include-cleaner] PWGUD/Core/UPCHelpers.h:32:91: warning: no header providing "o2::aod::pidTOFFullPi" is directly included [misc-include-cleaner] PWGUD/Core/UPCHelpers.h:32:114: warning: no header providing "o2::aod::pidTOFFullKa" is directly included [misc-include-cleaner] PWGUD/Core/UPCHelpers.h:32:137: warning: no header providing "o2::aod::pidTOFFullPr" is directly included [misc-include-cleaner] PWGUD/Core/UPCHelpers.h:71:3: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGUD/Core/UPCHelpers.h:80:3: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/Core/UPCHelpers.h:126:75: warning: no header providing "int16_t" is directly included [misc-include-cleaner] ``` #### `PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h` ```text PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:22:1: warning: included header random is not used directly [misc-include-cleaner] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:23:1: warning: included header vector is not used directly [misc-include-cleaner] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:74:20: error: unknown type name 'TLorentzVector' [clang-diagnostic-error] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:74:41: error: unknown type name 'TLorentzVector' [clang-diagnostic-error] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:74:62: error: unknown type name 'TLorentzVector' [clang-diagnostic-error] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:76:3: error: unknown type name 'TLorentzVector' [clang-diagnostic-error] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:77:3: error: unknown type name 'TLorentzVector' [clang-diagnostic-error] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:82:3: error: unknown type name 'Float_t'; did you mean 'float_t'? [clang-diagnostic-error] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:82:3: warning: no header providing "float_t" is directly included [misc-include-cleaner] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:82:11: warning: variable 'deltaPhi' is not initialized [cppcoreguidelines-init-variables] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:84:31: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:86:3: error: unknown type name 'TLorentzVector' [clang-diagnostic-error] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:87:3: error: unknown type name 'Float_t'; did you mean 'float_t'? [clang-diagnostic-error] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:87:11: warning: variable 'part1' is not initialized [cppcoreguidelines-init-variables] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:87:18: warning: variable 'part2' is not initialized [cppcoreguidelines-init-variables] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:94:3: error: unknown type name 'Float_t'; did you mean 'float_t'? [clang-diagnostic-error] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:95:3: error: unknown type name 'Float_t'; did you mean 'float_t'? [clang-diagnostic-error] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:96:3: error: unknown type name 'Float_t'; did you mean 'float_t'? [clang-diagnostic-error] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:97:3: error: unknown type name 'Float_t'; did you mean 'float_t'? [clang-diagnostic-error] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:99:3: error: unknown type name 'Float_t'; did you mean 'float_t'? [clang-diagnostic-error] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:100:3: error: unknown type name 'Float_t'; did you mean 'float_t'? [clang-diagnostic-error] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:101:3: error: unknown type name 'Float_t'; did you mean 'float_t'? [clang-diagnostic-error] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:102:3: error: unknown type name 'Float_t'; did you mean 'float_t'? [clang-diagnostic-error] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:104:3: error: unknown type name 'TLorentzVector' [clang-diagnostic-error] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:104:24: error: use of undeclared identifier 'TVector3' [clang-diagnostic-error] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:105:3: error: unknown type name 'TLorentzVector' [clang-diagnostic-error] PWGUD/Core/UPCJpsiCentralBarrelCorrHelper.h:221:12: warning: variable 'seed' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGUD/Core/UPCPairCuts.h` ```text PWGUD/Core/UPCPairCuts.h:45:75: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Core/UPCPairCuts.h:134:12: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGUD/Core/UPCPairCuts.h:172:10: warning: variable 'massD1' is not initialized [cppcoreguidelines-init-variables] PWGUD/Core/UPCPairCuts.h:172:18: warning: variable 'massD2' is not initialized [cppcoreguidelines-init-variables] PWGUD/Core/UPCPairCuts.h:172:26: warning: variable 'massM' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGUD/Core/UPCTauCentralBarrelHelperRL.h` ```text PWGUD/Core/UPCTauCentralBarrelHelperRL.h:21:1: warning: included header AnalysisDataModel.h is not used directly [misc-include-cleaner] PWGUD/Core/UPCTauCentralBarrelHelperRL.h:22:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGUD/Core/UPCTauCentralBarrelHelperRL.h:85:28: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGUD/Core/UPCTauCentralBarrelHelperRL.h:102:27: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGUD/Core/UPCTauCentralBarrelHelperRL.h:187:15: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGUD/Core/UPCTauCentralBarrelHelperRL.h:206:18: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGUD/Core/UPCTauCentralBarrelHelperRL.h:206:55: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGUD/Core/UPCTauCentralBarrelHelperRL.h:218:17: warning: no header providing "std::atanh" is directly included [misc-include-cleaner] PWGUD/Core/UPCTauCentralBarrelHelperRL.h:231:21: warning: no header providing "std::log" is directly included [misc-include-cleaner] PWGUD/Core/UPCTauCentralBarrelHelperRL.h:241:34: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGUD/Core/UPCTauCentralBarrelHelperRL.h:249:15: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGUD/Core/UPCTauCentralBarrelHelperRL.h:295:15: warning: no header providing "std::cos" is directly included [misc-include-cleaner] ``` #### `PWGUD/Core/decayTree.cxx` ```text PWGUD/Core/decayTree.cxx:57:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Core/decayTree.cxx:75:3: warning: no header providing "LOGF" is directly included [misc-include-cleaner] PWGUD/Core/decayTree.cxx:97:1: warning: constructor does not initialize these fields: fisFinal, fCounter, fStatus, fPID, fPIDfun, fmassMin, fmassMax, fptMin, fptMax, fetaMin, fetaMax, fncltpcMin, fncltpcMax, fchi2ncltpcMin, fchi2ncltpcMax, fdcaxyMax, fdcazMax, fnmassBins, fmassHistMax, fmassHistMin, fnmomBins, fmomHistMax, fmomHistMin, fCharge [cppcoreguidelines-pro-type-member-init] PWGUD/Core/decayTree.cxx:222:1: warning: constructor does not initialize these fields: fStatus, fnTracksMin, fnTracksMax, frgtwtofMin, fdBCMin, fdBCMax, fChargeState, fnFinals [cppcoreguidelines-pro-type-member-init] PWGUD/Core/decayTree.cxx:224:10: warning: no header providing "TDatabasePDG" is directly included [misc-include-cleaner] PWGUD/Core/decayTree.cxx:227:65: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Core/decayTree.cxx:265:7: warning: variable 'pid' is not initialized [cppcoreguidelines-init-variables] PWGUD/Core/decayTree.cxx:266:7: warning: variable 'pidfun' is not initialized [cppcoreguidelines-init-variables] PWGUD/Core/decayTree.cxx:936:14: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGUD/Core/decayTree.cxx:1049:44: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGUD/Core/decayTree.cxx:1075:3: warning: no header providing "std::partial_sort_copy" is directly included [misc-include-cleaner] PWGUD/Core/decayTree.cxx:1078:8: warning: no header providing "std::hash" is directly included [misc-include-cleaner] PWGUD/Core/decayTree.cxx:1159:12: warning: no header providing "uint" is directly included [misc-include-cleaner] ``` #### `PWGUD/Core/decayTree.h` ```text PWGUD/Core/decayTree.h:15:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] PWGUD/Core/decayTree.h:18:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGUD/Core/decayTree.h:100:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Core/decayTree.h:164:3: warning: constructor does not initialize these fields: fAngleMin, fAngleMax [cppcoreguidelines-pro-type-member-init] PWGUD/Core/decayTree.h:211:3: warning: constructor does not initialize these fields: fChargeState [cppcoreguidelines-pro-type-member-init] PWGUD/Core/decayTree.h:498:22: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGUD/Core/decayTree.h:548:43: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGUD/Core/decayTree.h:571:19: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/Core/decayTree.h:645:23: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Core/decayTree.h:765:40: warning: no header providing "o2::framework::HistPtr" is directly included [misc-include-cleaner] PWGUD/Core/decayTree.h:860:97: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] ``` #### `PWGUD/DataModel/SGTables.h` ```text PWGUD/DataModel/SGTables.h:15:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGUD/DataModel/SGTables.h:19:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGUD/DataModel/SGTables.h:20:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGUD/DataModel/SGTables.h:23:1: warning: included header vector is not used directly [misc-include-cleaner] PWGUD/DataModel/SGTables.h:29:30: warning: no header providing "int32_t" is directly included [misc-include-cleaner] ``` #### `PWGUD/DataModel/TauEventTables.h` ```text PWGUD/DataModel/TauEventTables.h:29:42: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/DataModel/TauEventTables.h:67:62: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] ``` #### `PWGUD/DataModel/TauThreeProngEventTables.h` ```text PWGUD/DataModel/TauThreeProngEventTables.h:29:42: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/DataModel/TauThreeProngEventTables.h:32:44: warning: no header providing "int8_t" is directly included [misc-include-cleaner] ``` #### `PWGUD/DataModel/TwoTracksEventTables.h` ```text PWGUD/DataModel/TwoTracksEventTables.h:31:42: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/DataModel/TwoTracksEventTables.h:69:62: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] ``` #### `PWGUD/DataModel/UDIndex.h` ```text PWGUD/DataModel/UDIndex.h:22:1: warning: included header UDTables.h is not used directly [misc-include-cleaner] ``` #### `PWGUD/DataModel/UDTables.h` ```text PWGUD/DataModel/UDTables.h:30:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGUD/DataModel/UDTables.h:31:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGUD/DataModel/UDTables.h:41:40: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGUD/DataModel/UDTables.h:91:42: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/DataModel/UDTables.h:93:42: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGUD/DataModel/UDTables.h:100:52: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGUD/DataModel/UDTables.h:148:66: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] PWGUD/DataModel/UDTables.h:420:36: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGUD/DataModel/UDTables.h:442:31: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGUD/DataModel/UDTables.h:466:46: warning: no header providing "int64_t" is directly included [misc-include-cleaner] ``` #### `PWGUD/TableProducer/Converters/UDCollisionSelExtrasConverter.cxx` ```text PWGUD/TableProducer/Converters/UDCollisionSelExtrasConverter.cxx:33:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGUD/TableProducer/Converters/UDCollisionSelExtrasV002Converter.cxx` ```text PWGUD/TableProducer/Converters/UDCollisionSelExtrasV002Converter.cxx:26:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/TableProducer/Converters/UDCollisionSelExtrasV002Converter.cxx:28:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/TableProducer/Converters/UDCollisionSelExtrasV002Converter.cxx:60:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGUD/TableProducer/Converters/UDCollisionSelExtrasV003Converter.cxx` ```text PWGUD/TableProducer/Converters/UDCollisionSelExtrasV003Converter.cxx:27:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/TableProducer/Converters/UDCollisionSelExtrasV003Converter.cxx:29:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/TableProducer/Converters/UDCollisionSelExtrasV003Converter.cxx:62:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGUD/TableProducer/Converters/UDCollisionsConverter.cxx` ```text PWGUD/TableProducer/Converters/UDCollisionsConverter.cxx:33:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGUD/TableProducer/Converters/UDFwdTracksExtraConverter.cxx` ```text PWGUD/TableProducer/Converters/UDFwdTracksExtraConverter.cxx:36:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] ``` #### `PWGUD/TableProducer/DGBCCandProducer.cxx` ```text PWGUD/TableProducer/DGBCCandProducer.cxx:32:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:35:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:39:20: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:39:30: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:39:47: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:41:30: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:41:40: warning: no header providing "o2::aod::BcSels" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:41:53: warning: no header providing "o2::aod::Run3MatchedToBCSparse" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:43:30: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:43:43: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:43:61: warning: no header providing "o2::aod::TrackSelection" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:45:20: warning: no header providing "o2::aod::AmbiguousTracks" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:47:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:47:61: warning: no header providing "o2::aod::ambiguous::trackId" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:48:17: warning: no header providing "o2::aod::AmbiguousFwdTracks" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:48:67: warning: no header providing "o2::aod::ambiguous::fwdtrackId" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:50:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:53:70: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:72:10: warning: no header providing "std::map" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:72:14: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:72:29: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:72:36: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:78:20: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:78:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:94:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:94:65: warning: no header providing "o2::constants::lhc::LHCBunchSpacingNS" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:126:9: warning: variable 'indBCToSave' is not initialized [cppcoreguidelines-init-variables] PWGUD/TableProducer/DGBCCandProducer.cxx:147:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:152:59: warning: no header providing "o2::aod::FwdTracks" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:210:9: warning: variable 'indBCToSave' is not initialized [cppcoreguidelines-init-variables] PWGUD/TableProducer/DGBCCandProducer.cxx:255:3: warning: no header providing "DGCutparHolder" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:256:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:271:81: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:272:30: warning: no header providing "o2::aod::pidTPCFullEl" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:272:49: warning: no header providing "o2::aod::pidTPCFullMu" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:272:68: warning: no header providing "o2::aod::pidTPCFullPi" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:272:87: warning: no header providing "o2::aod::pidTPCFullKa" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:272:106: warning: no header providing "o2::aod::pidTPCFullPr" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:273:30: warning: no header providing "o2::aod::TOFSignal" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:273:46: warning: no header providing "o2::aod::pidTOFbeta" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:274:30: warning: no header providing "o2::aod::pidTOFFullEl" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:274:49: warning: no header providing "o2::aod::pidTOFFullMu" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:274:68: warning: no header providing "o2::aod::pidTOFFullPi" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:274:87: warning: no header providing "o2::aod::pidTOFFullKa" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:274:106: warning: no header providing "o2::aod::pidTOFFullPr" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:277:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:278:46: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:279:60: warning: no header providing "o2::aod::fwdtrack::collisionId" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:283:36: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:284:23: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:284:46: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:379:27: warning: no header providing "o2::aod::Zdcs" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:379:54: warning: no header providing "o2::aod::FT0s" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:379:77: warning: no header providing "o2::aod::FV0As" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:379:102: warning: no header providing "o2::aod::FDDs" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:392:12: warning: variable 'nCharge' is not initialized [cppcoreguidelines-init-variables] PWGUD/TableProducer/DGBCCandProducer.cxx:401:7: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:401:45: warning: no header providing "o2::aod::evsel::foundBCId" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:420:11: warning: no header providing "ushort" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:421:60: warning: no header providing "o2::dataformats::TimeStamp" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:464:21: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:526:9: warning: variable 'isDG1' is not initialized [cppcoreguidelines-init-variables] PWGUD/TableProducer/DGBCCandProducer.cxx:526:16: warning: variable 'isDG2' is not initialized [cppcoreguidelines-init-variables] PWGUD/TableProducer/DGBCCandProducer.cxx:527:9: warning: variable 'ntr1' is not initialized [cppcoreguidelines-init-variables] PWGUD/TableProducer/DGBCCandProducer.cxx:527:15: warning: variable 'ntr2' is not initialized [cppcoreguidelines-init-variables] PWGUD/TableProducer/DGBCCandProducer.cxx:577:9: warning: no header providing "SETBIT" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.cxx:716:20: warning: no header providing "TH2" is directly included [misc-include-cleaner] ``` #### `PWGUD/TableProducer/DGBCCandProducer.h` ```text PWGUD/TableProducer/DGBCCandProducer.h:21:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.h:22:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.h:24:1: warning: included header map is not used directly [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.h:25:1: warning: included header vector is not used directly [misc-include-cleaner] PWGUD/TableProducer/DGBCCandProducer.h:32:34: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] ``` #### `PWGUD/TableProducer/DGCandProducer.cxx` ```text PWGUD/TableProducer/DGCandProducer.cxx:37:43: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:39:8: warning: constructor does not initialize these fields: mRunNumber, ccdb [cppcoreguidelines-pro-type-member-init] PWGUD/TableProducer/DGCandProducer.cxx:41:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:58:3: warning: no header providing "DGCutparHolder" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:59:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:70:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:72:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:82:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:83:25: warning: no header providing "o2::framework::HistPtr" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:86:20: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:86:30: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:86:47: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:88:30: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:88:54: warning: no header providing "o2::aod::BcSels" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:88:67: warning: no header providing "o2::aod::Run3MatchedToBCSparse" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:90:30: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:90:63: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:90:81: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:90:97: warning: no header providing "o2::aod::TrackSelection" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:91:30: warning: no header providing "o2::aod::pidTPCFullEl" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:91:49: warning: no header providing "o2::aod::pidTPCFullMu" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:91:68: warning: no header providing "o2::aod::pidTPCFullPi" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:91:87: warning: no header providing "o2::aod::pidTPCFullKa" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:91:106: warning: no header providing "o2::aod::pidTPCFullPr" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:92:30: warning: no header providing "o2::aod::TOFSignal" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:92:46: warning: no header providing "o2::aod::pidTOFbeta" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:93:30: warning: no header providing "o2::aod::pidTOFFullEl" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:93:49: warning: no header providing "o2::aod::pidTOFFullMu" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:93:68: warning: no header providing "o2::aod::pidTOFFullPi" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:93:87: warning: no header providing "o2::aod::pidTOFFullKa" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:93:106: warning: no header providing "o2::aod::pidTOFFullPr" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:94:20: warning: no header providing "o2::aod::FwdTracks" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:96:62: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:101:58: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:121:28: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:178:92: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:179:13: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:218:10: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:224:15: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:229:83: warning: no header providing "o2::aod::evsel::kIsBBV0A" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:230:83: warning: no header providing "o2::aod::evsel::kNoBGV0A" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:246:84: warning: no header providing "o2::aod::evsel::kIsBBT0A" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:247:84: warning: no header providing "o2::aod::evsel::kIsBBT0C" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:248:84: warning: no header providing "o2::aod::evsel::kNoBGT0A" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:249:84: warning: no header providing "o2::aod::evsel::kNoBGT0C" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:265:84: warning: no header providing "o2::aod::evsel::kIsBBFDA" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:266:84: warning: no header providing "o2::aod::evsel::kIsBBFDC" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:267:84: warning: no header providing "o2::aod::evsel::kNoBGFDA" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:268:84: warning: no header providing "o2::aod::evsel::kNoBGFDC" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:275:25: warning: no header providing "o2::aod::FV0As" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:275:50: warning: no header providing "o2::aod::FT0s" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:275:73: warning: no header providing "o2::aod::FDDs" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:289:55: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:290:57: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:291:56: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:292:55: warning: no header providing "o2::aod::evsel::kNoTimeFrameBorder" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:293:59: warning: no header providing "o2::aod::evsel::kNoITSROFrameBorder" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:294:55: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:295:62: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:296:61: warning: no header providing "o2::aod::evsel::kIsVertexITSTPC" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:301:5: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:347:80: warning: no header providing "o2::dataformats::TimeStamp" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:350:59: warning: no header providing "udhelpers::netCharge" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:401:13: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGUD/TableProducer/DGCandProducer.cxx:422:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:448:25: warning: no header providing "o2::aod::Zdcs" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:452:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:455:50: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:463:14: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:484:43: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:489:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:490:3: warning: no header providing "o2::framework::PresliceUnsorted" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:490:25: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:490:79: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:491:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:522:17: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/DGCandProducer.cxx:604:14: warning: no header providing "uint" is directly included [misc-include-cleaner] ``` #### `PWGUD/TableProducer/SGCandProducer.cxx` ```text PWGUD/TableProducer/SGCandProducer.cxx:30:1: warning: included header LHCConstants.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:32:1: warning: included header AggregatedRunInfo.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:33:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:34:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:35:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:37:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:55:43: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:57:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGUD/TableProducer/SGCandProducer.cxx:58:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:64:81: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:64:97: warning: no header providing "o2::aod::TrackSelection" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:65:30: warning: no header providing "o2::aod::pidTPCFullEl" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:65:49: warning: no header providing "o2::aod::pidTPCFullMu" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:65:68: warning: no header providing "o2::aod::pidTPCFullPi" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:65:87: warning: no header providing "o2::aod::pidTPCFullKa" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:65:106: warning: no header providing "o2::aod::pidTPCFullPr" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:66:30: warning: no header providing "o2::aod::pidTPCFullDe" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:66:49: warning: no header providing "o2::aod::pidTPCFullTr" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:66:68: warning: no header providing "o2::aod::pidTPCFullHe" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:66:87: warning: no header providing "o2::aod::pidTPCFullAl" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:67:30: warning: no header providing "o2::aod::TOFSignal" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:67:46: warning: no header providing "o2::aod::pidTOFbeta" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:68:30: warning: no header providing "o2::aod::pidTOFFullDe" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:68:49: warning: no header providing "o2::aod::pidTOFFullTr" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:68:68: warning: no header providing "o2::aod::pidTOFFullHe" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:68:87: warning: no header providing "o2::aod::pidTOFFullAl" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:69:30: warning: no header providing "o2::aod::pidTOFFullEl" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:69:49: warning: no header providing "o2::aod::pidTOFFullMu" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:69:68: warning: no header providing "o2::aod::pidTOFFullPi" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:69:87: warning: no header providing "o2::aod::pidTOFFullKa" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:69:106: warning: no header providing "o2::aod::pidTOFFullPr" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:76:3: warning: no header providing "SGCutParHolder" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:77:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:102:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:105:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:127:25: warning: no header providing "o2::framework::HistPtr" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:133:58: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:153:28: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:215:33: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:243:13: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:278:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:368:13: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:375:86: warning: no header providing "o2::dataformats::TimeStamp" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:379:59: warning: no header providing "udhelpers::netCharge" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:425:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:435:119: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:437:13: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:482:14: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:539:17: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/SGCandProducer.cxx:602:14: warning: no header providing "uint" is directly included [misc-include-cleaner] ``` #### `PWGUD/TableProducer/UPCCandidateProducer.cxx` ```text PWGUD/TableProducer/UPCCandidateProducer.cxx:43:12: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:44:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:46:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:75:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:79:3: warning: no header providing "o2::framework::MutableConfigurable" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:94:16: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:108:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:108:54: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:114:86: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:115:47: warning: no header providing "o2::aod::pidTPCFullEl" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:115:70: warning: no header providing "o2::aod::pidTPCFullMu" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:115:93: warning: no header providing "o2::aod::pidTPCFullPi" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:115:116: warning: no header providing "o2::aod::pidTPCFullKa" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:115:139: warning: no header providing "o2::aod::pidTPCFullPr" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:116:47: warning: no header providing "o2::aod::TOFSignal" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:116:67: warning: no header providing "o2::aod::pidTOFbeta" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:117:47: warning: no header providing "o2::aod::pidTOFFullEl" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:117:70: warning: no header providing "o2::aod::pidTOFFullMu" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:117:93: warning: no header providing "o2::aod::pidTOFFullPi" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:117:116: warning: no header providing "o2::aod::pidTOFFullKa" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:117:139: warning: no header providing "o2::aod::pidTOFFullPr" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:119:43: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:121:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:128:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:129:42: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:130:22: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:130:27: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:211:39: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:219:44: warning: no header providing "int16_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:387:51: warning: no header providing "o2::aod::fwdtrack::ForwardTrackTypeEnum" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:402:9: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:440:48: warning: no header providing "std::round" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:474:21: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:564:9: warning: no header providing "SETBIT" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:662:29: warning: no header providing "TMath::FloorNint" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:763:9: warning: Value stored to 'curbc' is never read [clang-analyzer-deadcode.DeadStores] PWGUD/TableProducer/UPCCandidateProducer.cxx:826:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:891:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:946:55: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:971:7: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:1442:32: warning: no header providing "std::accumulate" is directly included [misc-include-cleaner] PWGUD/TableProducer/UPCCandidateProducer.cxx:2027:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGUD/TableProducer/fwdTrackPropagation.cxx` ```text PWGUD/TableProducer/fwdTrackPropagation.cxx:43:8: warning: constructor does not initialize these fields: fCCDB [cppcoreguidelines-pro-type-member-init] PWGUD/TableProducer/fwdTrackPropagation.cxx:46:67: warning: no header providing "ROOT::Math::MatRepSym" is directly included [misc-include-cleaner] PWGUD/TableProducer/fwdTrackPropagation.cxx:49:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/TableProducer/fwdTrackPropagation.cxx:52:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/TableProducer/fwdTrackPropagation.cxx:53:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGUD/TableProducer/fwdTrackPropagation.cxx:59:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/TableProducer/fwdTrackPropagation.cxx:68:52: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGUD/TableProducer/fwdTrackPropagation.cxx:76:22: warning: no header providing "o2::dataformats::GlobalFwdTrack" is directly included [misc-include-cleaner] PWGUD/TableProducer/fwdTrackPropagation.cxx:94:31: warning: no header providing "o2::base::GeometryManager" is directly included [misc-include-cleaner] PWGUD/TableProducer/fwdTrackPropagation.cxx:149:27: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGUD/TableProducer/fwdTrackPropagation.cxx:154:34: warning: no header providing "int8_t" is directly included [misc-include-cleaner] ``` #### `PWGUD/TableProducer/tauEventTableProducer.cxx` ```text PWGUD/TableProducer/tauEventTableProducer.cxx:21:1: warning: included header random is not used directly [misc-include-cleaner] PWGUD/TableProducer/tauEventTableProducer.cxx:39:1: warning: included header EventSelectionParams.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/tauEventTableProducer.cxx:40:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/tauEventTableProducer.cxx:41:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/tauEventTableProducer.cxx:42:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/tauEventTableProducer.cxx:43:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/tauEventTableProducer.cxx:44:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/tauEventTableProducer.cxx:51:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGUD/TableProducer/tauEventTableProducer.cxx:52:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauEventTableProducer.cxx:56:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauEventTableProducer.cxx:59:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauEventTableProducer.cxx:62:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauEventTableProducer.cxx:64:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauEventTableProducer.cxx:131:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauEventTableProducer.cxx:138:90: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauEventTableProducer.cxx:217:25: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauEventTableProducer.cxx:217:42: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauEventTableProducer.cxx:411:7: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauEventTableProducer.cxx:447:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauEventTableProducer.cxx:463:7: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauEventTableProducer.cxx:518:22: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauEventTableProducer.cxx:519:11: warning: Value stored to 'problem' is never read [clang-analyzer-deadcode.DeadStores] ``` #### `PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx` ```text PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:27:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:30:1: warning: included header random is not used directly [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:39:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:43:1: warning: included header EventSelectionParams.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:44:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:45:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:46:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:47:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:48:1: warning: included header PIDResponseTPC.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:49:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:51:1: warning: included header DGPIDSelector.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:53:1: warning: included header UDHelpers.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:82:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:90:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:157:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:219:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:241:66: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:242:24: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:242:29: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:292:23: warning: no header providing "std::log" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:299:5: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:306:39: warning: no header providing "ROOT::Math::LorentzVector" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:306:65: warning: no header providing "ROOT::Math::PxPyPzE4D" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:319:38: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:320:36: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:464:5: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:554:25: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:554:42: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:733:90: warning: no header providing "o2::constants::physics::MassPiPlus" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:771:11: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:886:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:1072:58: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:1182:7: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/tauThreeProngEventTableProducer.cxx:1274:11: warning: Value stored to 'problem' is never read [clang-analyzer-deadcode.DeadStores] ``` #### `PWGUD/TableProducer/twoTracksEventTableProducer.cxx` ```text PWGUD/TableProducer/twoTracksEventTableProducer.cxx:21:1: warning: included header random is not used directly [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:39:1: warning: included header EventSelectionParams.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:40:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:41:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:42:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:43:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:44:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:47:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:54:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:55:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:59:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:63:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:66:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:68:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:133:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:140:83: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:152:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:242:25: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:242:42: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:352:30: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:425:17: warning: no header providing "ROOT::Math::LorentzVector" is directly included [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:425:43: warning: no header providing "ROOT::Math::PxPyPzE4D" is directly included [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:475:5: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:503:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:519:7: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/twoTracksEventTableProducer.cxx:575:11: warning: Value stored to 'problem' is never read [clang-analyzer-deadcode.DeadStores] ``` #### `PWGUD/TableProducer/udMcCollisions2udCollisions.cxx` ```text PWGUD/TableProducer/udMcCollisions2udCollisions.cxx:32:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/TableProducer/udMcCollisions2udCollisions.cxx:36:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/TableProducer/udMcCollisions2udCollisions.cxx:59:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGUD/TableProducer/udMcParticles2udTracks.cxx` ```text PWGUD/TableProducer/udMcParticles2udTracks.cxx:32:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/TableProducer/udMcParticles2udTracks.cxx:36:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/TableProducer/udMcParticles2udTracks.cxx:59:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGUD/TableProducer/upcCandProducerMuon.cxx` ```text PWGUD/TableProducer/upcCandProducerMuon.cxx:24:1: warning: included header MagneticField.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:30:1: warning: included header TrackFwd.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:33:1: warning: included header TGeoGlobalMagField.h is not used directly [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:35:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:43:8: warning: constructor does not initialize these fields: fCCDB [cppcoreguidelines-pro-type-member-init] PWGUD/TableProducer/upcCandProducerMuon.cxx:46:12: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:48:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:48:21: warning: no header providing "o2::aod::UDMcCollisions" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:49:21: warning: no header providing "o2::aod::UDMcParticles" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:50:21: warning: no header providing "o2::aod::UDMcFwdTrackLabels" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:52:21: warning: no header providing "o2::aod::UDFwdTracks" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:53:21: warning: no header providing "o2::aod::UDFwdTracksExtra" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:54:21: warning: no header providing "o2::aod::UDFwdIndices" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:55:21: warning: no header providing "o2::aod::UDCollisions" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:56:21: warning: no header providing "o2::aod::UDCollisionsSelsFwd" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:57:21: warning: no header providing "o2::aod::UDZdcsReduced" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:59:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:62:3: warning: no header providing "o2::framework::MutableConfigurable" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:63:16: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:69:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:69:54: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:72:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:73:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:76:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:85:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:86:45: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:87:22: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:87:27: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:95:35: warning: no header providing "o2::dataformats::GlobalFwdTrack" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:204:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:233:72: warning: forwarding reference parameter 'func' is never forwarded inside the function body [cppcoreguidelines-missing-std-forward] PWGUD/TableProducer/upcCandProducerMuon.cxx:282:100: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:289:29: warning: no header providing "std::accumulate" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:303:69: warning: no header providing "ROOT::Math::MatRepSym" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:327:11: warning: variable 'px' is not initialized [cppcoreguidelines-init-variables] PWGUD/TableProducer/upcCandProducerMuon.cxx:327:15: warning: variable 'py' is not initialized [cppcoreguidelines-init-variables] PWGUD/TableProducer/upcCandProducerMuon.cxx:327:19: warning: variable 'pz' is not initialized [cppcoreguidelines-init-variables] PWGUD/TableProducer/upcCandProducerMuon.cxx:328:9: warning: variable 'sign' is not initialized [cppcoreguidelines-init-variables] PWGUD/TableProducer/upcCandProducerMuon.cxx:349:7: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:365:30: warning: no header providing "o2::aod::fwdtrack::ForwardTrackTypeEnum" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:365:52: warning: no header providing "o2::aod::fwdtrack::MCHStandaloneTrack" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:366:52: warning: no header providing "o2::aod::fwdtrack::MuonStandaloneTrack" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:377:24: warning: no header providing "o2::base::GeometryManager" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:398:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:431:52: warning: no header providing "TMath::FloorNint" is directly included [misc-include-cleaner] PWGUD/TableProducer/upcCandProducerMuon.cxx:529:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/FwdMuonsUPC.cxx` ```text PWGUD/Tasks/FwdMuonsUPC.cxx:26:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGUD/Tasks/FwdMuonsUPC.cxx:27:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] PWGUD/Tasks/FwdMuonsUPC.cxx:28:1: warning: included header GRPECSObject.h is not used directly [misc-include-cleaner] PWGUD/Tasks/FwdMuonsUPC.cxx:32:1: warning: included header TSystem.h is not used directly [misc-include-cleaner] PWGUD/Tasks/FwdMuonsUPC.cxx:33:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGUD/Tasks/FwdMuonsUPC.cxx:183:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/FwdMuonsUPC.cxx:186:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/Tasks/FwdMuonsUPC.cxx:192:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/Tasks/FwdMuonsUPC.cxx:197:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/FwdMuonsUPC.cxx:197:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/FwdMuonsUPC.cxx:205:53: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGUD/Tasks/FwdMuonsUPC.cxx:207:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/FwdMuonsUPC.cxx:247:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/FwdMuonsUPC.cxx:266:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGUD/Tasks/FwdMuonsUPC.cxx:282:68: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGUD/Tasks/FwdMuonsUPC.cxx:305:52: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGUD/Tasks/FwdMuonsUPC.cxx:380:42: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/Tasks/FwdMuonsUPC.cxx:455:16: warning: no header providing "std::isinf" is directly included [misc-include-cleaner] PWGUD/Tasks/FwdMuonsUPC.cxx:528:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/FwdMuonsUPC.cxx:536:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/FwdMuonsUPC.cxx:600:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/FwdMuonsUPC.cxx:950:7: warning: uninitialized record type: 'zdc' [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/FwdMuonsUPC.cxx:965:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/analysisMCDPMJetSGv3.cxx` ```text PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:18:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:21:1: warning: included header UPCHelpers.h is not used directly [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:25:1: warning: included header LorentzVector.h is not used directly [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:26:1: warning: included header PxPyPzM4D.h is not used directly [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:27:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:34:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:34:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:37:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:41:20: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:41:30: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:41:54: warning: no header providing "o2::aod::BcSels" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:41:67: warning: no header providing "o2::aod::Run3MatchedToBCSparse" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:43:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:43:17: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:43:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:44:21: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:44:72: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:57:38: warning: no header providing "ROOT::Math::LorentzVector" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:57:64: warning: no header providing "ROOT::Math::PxPyPzM4D" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:62:13: warning: member 'codePion' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:63:13: warning: member 'codeKaon' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:64:13: warning: member 'codeProton' of type 'const int' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:66:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:80:40: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:81:40: warning: no header providing "o2::constants::physics::MassKaonCharged" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:82:42: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:85:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:95:55: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:98:46: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:114:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:168:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:186:16: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:194:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:212:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:228:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:238:5: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:274:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:277:49: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGUD/Tasks/analysisMCDPMJetSGv3.cxx:282:32: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/decayTreeAnalyzer.cxx` ```text PWGUD/Tasks/decayTreeAnalyzer.cxx:33:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/decayTreeAnalyzer.cxx:36:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/Tasks/decayTreeAnalyzer.cxx:38:8: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] PWGUD/Tasks/decayTreeAnalyzer.cxx:41:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/decayTreeAnalyzer.cxx:49:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/decayTreeAnalyzer.cxx:53:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/decayTreeAnalyzer.cxx:64:33: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGUD/Tasks/decayTreeAnalyzer.cxx:69:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGUD/Tasks/decayTreeAnalyzer.cxx:70:25: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGUD/Tasks/decayTreeAnalyzer.cxx:101:36: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/dgCandAnalyzer.cxx` ```text PWGUD/Tasks/dgCandAnalyzer.cxx:34:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/dgCandAnalyzer.cxx:37:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:42:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:45:3: warning: no header providing "TDatabasePDG" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:51:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:61:8: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:64:12: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:67:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:71:33: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:89:16: warning: no header providing "TLorentzVector" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:102:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:118:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:121:28: warning: no header providing "o2::base::NameConf" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:138:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:142:71: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:222:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:223:25: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:291:14: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:308:37: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:352:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:352:53: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:496:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGUD/Tasks/dgCandAnalyzer.cxx:523:18: warning: no header providing "TH2" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/diffMCDataScanner.cxx` ```text PWGUD/Tasks/diffMCDataScanner.cxx:23:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:25:56: warning: no header providing "o2::framework::VariantType" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:35:20: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:35:30: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:35:47: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:35:60: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:38:42: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:52:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:55:46: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:74:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:76:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:76:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:92:18: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:100:40: warning: no header providing "o2::aod::BcSels" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:100:53: warning: no header providing "o2::aod::Run3MatchedToBCSparse" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:101:30: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:101:43: warning: no header providing "o2::aod::TrackSelection" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:102:20: warning: no header providing "o2::aod::MFTTracks" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:103:20: warning: no header providing "o2::aod::FwdTracks" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:106:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:106:30: warning: no header providing "requireGlobalTrackInFilter" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:107:29: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:115:21: warning: no header providing "o2::aod::FT0s" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:116:21: warning: no header providing "o2::aod::FV0As" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:117:21: warning: no header providing "o2::aod::FDDs" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:118:21: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:119:21: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:211:50: warning: no header providing "kNaliases" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:212:66: warning: no header providing "o2::aod::evsel::kNsel" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:285:43: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:340:53: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:354:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:354:64: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:409:28: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:420:21: warning: no header providing "o2::aod::McCollision" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:429:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:431:64: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:432:39: warning: no header providing "o2::aod::pidTPCEl" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:432:54: warning: no header providing "o2::aod::pidTPCMu" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:432:69: warning: no header providing "o2::aod::pidTPCPi" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:432:84: warning: no header providing "o2::aod::pidTPCKa" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCDataScanner.cxx:432:99: warning: no header providing "o2::aod::pidTPCPr" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/diffMCQA.cxx` ```text PWGUD/Tasks/diffMCQA.cxx:27:8: warning: constructor does not initialize these fields: maxdEdxTPC, maxdEdxTOF [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/diffMCQA.cxx:28:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:29:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:29:17: warning: no header providing "o2::aod::Zdcs" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:29:44: warning: no header providing "o2::aod::zdc::bcId" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:30:17: warning: no header providing "o2::aod::Calos" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:30:47: warning: no header providing "o2::aod::calo::bcId" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:36:3: warning: no header providing "DGCutparHolder" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:37:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:52:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:57:20: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:57:30: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:57:47: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:57:60: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:59:30: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:59:40: warning: no header providing "o2::aod::BcSels" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:59:53: warning: no header providing "o2::aod::Run3MatchedToBCSparse" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:60:30: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:60:43: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:60:61: warning: no header providing "o2::aod::TrackSelection" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:60:82: warning: no header providing "o2::aod::TrackSelectionExtension" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:60:112: warning: no header providing "o2::aod::TOFSignal" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:61:30: warning: no header providing "o2::aod::FwdTracks" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:61:46: warning: no header providing "o2::aod::McFwdTrackLabels" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:62:20: warning: no header providing "o2::aod::AmbiguousTracks" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:63:21: warning: no header providing "o2::aod::AmbiguousFwdTracks" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:65:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:73:82: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:169:12: warning: no header providing "o2::framework::ProcessingContext" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:213:17: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:213:68: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:216:28: warning: no header providing "o2::aod::McCollision" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:216:69: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:225:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:225:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:239:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:243:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:243:30: warning: no header providing "requireGlobalTrackInFilter" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:244:29: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:253:25: warning: no header providing "o2::aod::FT0s" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:254:25: warning: no header providing "o2::aod::FV0As" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:255:25: warning: no header providing "o2::aod::FDDs" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:258:25: warning: no header providing "o2::aod::V0s" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:259:25: warning: no header providing "o2::aod::Cascades" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:260:25: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:283:20: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:407:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:659:14: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:744:24: warning: no header providing "o2::aod::FV0A" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:747:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:753:24: warning: no header providing "o2::aod::FT0" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:767:24: warning: no header providing "o2::aod::FDD" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:804:24: warning: no header providing "o2::aod::Zdc" is directly included [misc-include-cleaner] PWGUD/Tasks/diffMCQA.cxx:832:25: warning: no header providing "o2::aod::Calo" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/diffQA.cxx` ```text PWGUD/Tasks/diffQA.cxx:28:8: warning: constructor does not initialize these fields: maxdEdxTPC, maxdEdxTOF [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/diffQA.cxx:29:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:30:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:30:17: warning: no header providing "o2::aod::Zdcs" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:30:44: warning: no header providing "o2::aod::zdc::bcId" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:31:17: warning: no header providing "o2::aod::Calos" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:31:47: warning: no header providing "o2::aod::calo::bcId" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:37:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:48:3: warning: no header providing "DGCutparHolder" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:49:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:59:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:64:20: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:64:30: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:64:47: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:66:30: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:66:40: warning: no header providing "o2::aod::BcSels" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:66:53: warning: no header providing "o2::aod::Run3MatchedToBCSparse" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:67:30: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:67:43: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:67:61: warning: no header providing "o2::aod::TrackSelection" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:67:82: warning: no header providing "o2::aod::TrackSelectionExtension" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:67:112: warning: no header providing "o2::aod::TOFSignal" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:68:20: warning: no header providing "o2::aod::FwdTracks" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:69:20: warning: no header providing "o2::aod::AmbiguousTracks" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:70:21: warning: no header providing "o2::aod::AmbiguousFwdTracks" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:72:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:82:91: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:159:31: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:159:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:160:31: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:160:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:177:12: warning: no header providing "o2::framework::ProcessingContext" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:222:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:222:30: warning: no header providing "requireGlobalTrackInFilter" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:223:29: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:232:25: warning: no header providing "o2::aod::FT0s" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:233:25: warning: no header providing "o2::aod::FV0As" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:234:25: warning: no header providing "o2::aod::FDDs" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:237:25: warning: no header providing "o2::aod::V0s" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:238:25: warning: no header providing "o2::aod::Cascades" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:244:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:244:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:248:18: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:338:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:472:14: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:522:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:532:11: warning: variable 'ampFV0A' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/diffQA.cxx:532:20: warning: variable 'ampFT0A' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/diffQA.cxx:532:29: warning: variable 'ampFT0C' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/diffQA.cxx:532:38: warning: variable 'ampFDDA' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/diffQA.cxx:532:47: warning: variable 'ampFDDC' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/diffQA.cxx:533:10: warning: variable 'isDGcandidate' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/diffQA.cxx:572:11: warning: variable 'ampFV0A' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/diffQA.cxx:572:20: warning: variable 'ampFT0A' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/diffQA.cxx:572:29: warning: variable 'ampFT0C' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/diffQA.cxx:572:38: warning: variable 'ampFDDA' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/diffQA.cxx:572:47: warning: variable 'ampFDDC' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/diffQA.cxx:633:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:639:12: warning: no header providing "size_t" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:721:9: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] PWGUD/Tasks/diffQA.cxx:724:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:726:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:730:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:732:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:736:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:738:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:742:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:744:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:748:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:750:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:754:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:756:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:760:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:762:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:766:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:768:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:772:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:774:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:778:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:780:47: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:784:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:786:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:790:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:792:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:796:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:798:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:802:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:804:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:808:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:810:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:814:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:816:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:820:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:822:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:826:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:828:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:832:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:834:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:838:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:840:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:844:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:846:48: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] PWGUD/Tasks/diffQA.cxx:892:24: warning: no header providing "o2::aod::Zdc" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:925:5: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGUD/Tasks/diffQA.cxx:925:14: warning: variable 'bc1' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/diffQA.cxx:925:19: warning: variable 'bc2' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/diffQA.cxx:925:24: warning: variable 'bc3' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/diffQA.cxx:929:7: warning: Value stored to 'bc3' is never read [clang-analyzer-deadcode.DeadStores] ``` #### `PWGUD/Tasks/eventByevent.cxx` ```text PWGUD/Tasks/eventByevent.cxx:16:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGUD/Tasks/eventByevent.cxx:50:43: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/Tasks/eventByevent.cxx:119:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/Tasks/eventByevent.cxx:121:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/eventByevent.cxx:152:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/eventByevent.cxx:152:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/eventByevent.cxx:155:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/eventByevent.cxx:158:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/Tasks/eventByevent.cxx:161:99: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/eventByevent.cxx:174:48: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGUD/Tasks/eventByevent.cxx:187:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/eventByevent.cxx:243:67: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGUD/Tasks/eventByevent.cxx:247:13: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/exclusivePentaquark.cxx` ```text PWGUD/Tasks/exclusivePentaquark.cxx:21:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGUD/Tasks/exclusivePentaquark.cxx:22:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePentaquark.cxx:22:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGUD/Tasks/exclusivePentaquark.cxx:35:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePentaquark.cxx:42:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePentaquark.cxx:42:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePentaquark.cxx:45:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePentaquark.cxx:47:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePentaquark.cxx:55:48: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePentaquark.cxx:73:43: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePentaquark.cxx:73:99: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePentaquark.cxx:98:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePentaquark.cxx:109:5: warning: Value stored to 'gapSide' is never read [clang-analyzer-deadcode.DeadStores] PWGUD/Tasks/exclusivePentaquark.cxx:119:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePentaquark.cxx:148:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePentaquark.cxx:151:42: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePentaquark.cxx:167:32: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePentaquark.cxx:172:78: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePentaquark.cxx:174:74: warning: no header providing "o2::constants::physics::MassMuon" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePentaquark.cxx:176:76: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePentaquark.cxx:178:79: warning: no header providing "o2::constants::physics::MassProtonBar" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePentaquark.cxx:187:11: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/exclusivePhi.cxx` ```text PWGUD/Tasks/exclusivePhi.cxx:21:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGUD/Tasks/exclusivePhi.cxx:24:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhi.cxx:24:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGUD/Tasks/exclusivePhi.cxx:38:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhi.cxx:38:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhi.cxx:41:3: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhi.cxx:48:36: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhi.cxx:53:5: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhi.cxx:99:27: warning: no header providing "TMath::ATan2" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhi.cxx:103:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhi.cxx:105:43: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhi.cxx:105:99: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhi.cxx:112:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhi.cxx:122:48: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhi.cxx:159:90: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhi.cxx:166:85: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhi.cxx:237:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhi.cxx:281:74: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhi.cxx:297:11: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhi.cxx:409:65: warning: no header providing "o2::constants::physics::MassKaonCharged" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhi.cxx:632:17: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/exclusivePhiLeptons.cxx` ```text PWGUD/Tasks/exclusivePhiLeptons.cxx:21:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptons.cxx:23:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptons.cxx:23:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGUD/Tasks/exclusivePhiLeptons.cxx:36:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptons.cxx:43:21: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptons.cxx:45:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptons.cxx:45:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptons.cxx:48:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptons.cxx:50:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptons.cxx:58:48: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptons.cxx:74:43: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptons.cxx:74:99: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptons.cxx:106:99: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptons.cxx:121:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptons.cxx:170:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptons.cxx:173:42: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptons.cxx:189:32: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptons.cxx:194:78: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptons.cxx:201:11: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptons.cxx:231:7: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptons.cxx:236:15: warning: no header providing "fabs" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptons.cxx:251:9: warning: Value stored to 'sigmaTotal' is never read [clang-analyzer-deadcode.DeadStores] PWGUD/Tasks/exclusivePhiLeptons.cxx:277:9: warning: Value stored to 'sigmaTotal' is never read [clang-analyzer-deadcode.DeadStores] PWGUD/Tasks/exclusivePhiLeptons.cxx:303:9: warning: Value stored to 'sigmaTotal' is never read [clang-analyzer-deadcode.DeadStores] ``` #### `PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx` ```text PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:11:1: warning: included header SGSelector.h is not used directly [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:21:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:23:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:23:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:55:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:56:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:59:21: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:61:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:61:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:64:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:66:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:72:48: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:85:43: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:85:99: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:111:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:169:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:172:42: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:179:32: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:184:78: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:185:11: warning: no header providing "fabs" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:194:11: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:229:9: warning: Value stored to 'sigmaTotal' is never read [clang-analyzer-deadcode.DeadStores] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:246:9: warning: Value stored to 'sigmaTotal' is never read [clang-analyzer-deadcode.DeadStores] PWGUD/Tasks/exclusivePhiLeptonsTrees.cxx:263:9: warning: Value stored to 'sigmaTotal' is never read [clang-analyzer-deadcode.DeadStores] ``` #### `PWGUD/Tasks/exclusiveRhoTo4Pi.cxx` ```text PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:17:1: warning: included header SGTrackSelector.h is not used directly [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:18:1: warning: included header UDHelpers.h is not used directly [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:23:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:29:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:30:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:32:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:33:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:46:37: warning: no header providing "ROOT::Math::PtEtaPhiMVector" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:48:32: warning: no header providing "ROOT::Math::XYZVectorF" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:49:35: warning: no header providing "ROOT::Math::PxPyPzEVector" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:50:35: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:71:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:71:55: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:78:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:109:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:113:71: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:116:3: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:124:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:127:110: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:130:60: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:140:84: warning: no header providing "o2::framework::kTHnSparseF" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:271:55: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:307:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:1190:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:1378:10: warning: no header providing "std::ostringstream" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:1379:17: warning: no header providing "std::fixed" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:1379:31: warning: no header providing "std::setprecision" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:1418:37: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveRhoTo4Pi.cxx:1420:32: warning: no header providing "THnSparse" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/exclusiveTwoProtons.cxx` ```text PWGUD/Tasks/exclusiveTwoProtons.cxx:21:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:22:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:22:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGUD/Tasks/exclusiveTwoProtons.cxx:35:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:38:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:38:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:40:3: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:45:36: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:50:5: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:96:27: warning: no header providing "TMath::ATan2" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:100:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:102:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:105:48: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:122:43: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:122:99: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:152:134: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:167:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:173:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:197:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:200:42: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:221:76: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:223:79: warning: no header providing "o2::constants::physics::MassProtonBar" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:230:11: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:265:15: warning: no header providing "fabs" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtons.cxx:274:9: warning: Value stored to 'sigmaTotal' is never read [clang-analyzer-deadcode.DeadStores] PWGUD/Tasks/exclusiveTwoProtons.cxx:317:9: warning: Value stored to 'sigmaTotal' is never read [clang-analyzer-deadcode.DeadStores] ``` #### `PWGUD/Tasks/exclusiveTwoProtonsSG.cxx` ```text PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:21:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:22:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:22:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:35:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:41:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:41:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:43:3: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:48:36: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:53:5: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:99:27: warning: no header providing "TMath::ATan2" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:103:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:105:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:113:48: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:130:43: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:130:99: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:160:134: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:174:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:194:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:221:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:224:42: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:246:76: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:248:79: warning: no header providing "o2::constants::physics::MassProtonBar" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:255:11: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:292:15: warning: no header providing "fabs" is directly included [misc-include-cleaner] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:301:9: warning: Value stored to 'sigmaTotal' is never read [clang-analyzer-deadcode.DeadStores] PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:345:9: warning: Value stored to 'sigmaTotal' is never read [clang-analyzer-deadcode.DeadStores] ``` #### `PWGUD/Tasks/flowCorrelationsUpc.cxx` ```text PWGUD/Tasks/flowCorrelationsUpc.cxx:18:1: warning: included header PairCuts.h is not used directly [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:19:1: warning: included header CorrelationsDerived.h is not used directly [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:24:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:25:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:26:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:27:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:29:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:32:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:36:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:59:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:74:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:78:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:80:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:83:44: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:110:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:113:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:144:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:144:40: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:202:60: warning: no header providing "std::asin" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:288:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:297:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:298:13: warning: Variable 'rad' with floating point type 'double' should not be used as a loop counter [clang-analyzer-security.FloatLoopCounter] PWGUD/Tasks/flowCorrelationsUpc.cxx:350:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:355:24: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCorrelationsUpc.cxx:362:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/flowCumulantsUpc.cxx` ```text PWGUD/Tasks/flowCumulantsUpc.cxx:19:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:20:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:30:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:31:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:32:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:33:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:35:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:38:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:42:1: warning: included header TList.h is not used directly [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:43:1: warning: included header TVector3.h is not used directly [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:60:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:62:8: warning: constructor does not initialize these fields: ccdb, fPtAxis, gCurrentHadronicRate [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/flowCumulantsUpc.cxx:112:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:113:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:128:3: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:134:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:135:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:135:73: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:135:100: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:135:127: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:139:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:162:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:164:27: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:169:25: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:186:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:188:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:189:54: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:201:61: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:298:18: warning: no header providing "TNamed" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:305:27: warning: no header providing "Form" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:349:12: warning: no header providing "uint" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:416:80: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:437:97: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:537:59: warning: no header providing "ConstStr" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:539:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/flowCumulantsUpc.cxx:539:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/flowCumulantsUpc.cxx:556:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/flowCumulantsUpc.cxx:556:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/flowCumulantsUpc.cxx:584:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/flowCumulantsUpc.cxx:584:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/flowCumulantsUpc.cxx:601:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/flowCumulantsUpc.cxx:601:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/flowCumulantsUpc.cxx:684:80: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:692:80: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:700:88: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:707:81: warning: no header providing "o2::aod::evsel::kIsGoodITSLayersAll" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:715:82: warning: no header providing "o2::aod::evsel::kNoCollInRofStandard" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:722:86: warning: no header providing "o2::aod::evsel::kNoHighMultCollInPrevRof" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:828:30: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:840:133: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:866:37: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:961:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:975:45: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:995:19: warning: no header providing "ROOT::Math::LorentzVector" is directly included [misc-include-cleaner] PWGUD/Tasks/flowCumulantsUpc.cxx:995:45: warning: no header providing "ROOT::Math::PxPyPzE4D" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/polarisationRho.cxx` ```text PWGUD/Tasks/polarisationRho.cxx:14:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGUD/Tasks/polarisationRho.cxx:35:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/polarisationRho.cxx:35:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/polarisationRho.cxx:38:3: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGUD/Tasks/polarisationRho.cxx:45:36: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGUD/Tasks/polarisationRho.cxx:50:5: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGUD/Tasks/polarisationRho.cxx:96:27: warning: no header providing "TMath::ATan2" is directly included [misc-include-cleaner] PWGUD/Tasks/polarisationRho.cxx:100:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/polarisationRho.cxx:103:43: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/Tasks/polarisationRho.cxx:108:48: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGUD/Tasks/polarisationRho.cxx:112:43: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/polarisationRho.cxx:112:99: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/polarisationRho.cxx:148:106: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGUD/Tasks/polarisationRho.cxx:150:68: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGUD/Tasks/polarisationRho.cxx:222:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/polarisationRho.cxx:228:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/Tasks/polarisationRho.cxx:240:11: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/sgD0Analyzer.cxx` ```text PWGUD/Tasks/sgD0Analyzer.cxx:26:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgD0Analyzer.cxx:28:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGUD/Tasks/sgD0Analyzer.cxx:34:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/sgD0Analyzer.cxx:36:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/Tasks/sgD0Analyzer.cxx:37:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/sgD0Analyzer.cxx:55:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/sgD0Analyzer.cxx:59:41: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/sgD0Analyzer.cxx:119:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/Tasks/sgD0Analyzer.cxx:122:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/sgD0Analyzer.cxx:133:27: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] PWGUD/Tasks/sgD0Analyzer.cxx:137:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/sgD0Analyzer.cxx:139:71: warning: no header providing "o2::constants::physics::MassKaonCharged" is directly included [misc-include-cleaner] PWGUD/Tasks/sgD0Analyzer.cxx:140:71: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/sgExcUniverse.cxx` ```text PWGUD/Tasks/sgExcUniverse.cxx:18:1: warning: included header UDHelpers.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgExcUniverse.cxx:24:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgExcUniverse.cxx:34:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExcUniverse.cxx:38:37: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExcUniverse.cxx:50:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExcUniverse.cxx:54:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExcUniverse.cxx:58:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExcUniverse.cxx:78:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExcUniverse.cxx:82:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExcUniverse.cxx:85:64: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExcUniverse.cxx:90:33: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExcUniverse.cxx:97:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExcUniverse.cxx:144:13: warning: variable 'hypothesis' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGUD/Tasks/sgExclOmega.cxx` ```text PWGUD/Tasks/sgExclOmega.cxx:26:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgExclOmega.cxx:28:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGUD/Tasks/sgExclOmega.cxx:34:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/sgExclOmega.cxx:36:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclOmega.cxx:37:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclOmega.cxx:56:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclOmega.cxx:60:41: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclOmega.cxx:105:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclOmega.cxx:113:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclOmega.cxx:115:5: warning: Value stored to 'gapSide' is never read [clang-analyzer-deadcode.DeadStores] PWGUD/Tasks/sgExclOmega.cxx:126:72: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclOmega.cxx:129:72: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclOmega.cxx:140:27: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclOmega.cxx:170:13: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclOmega.cxx:170:51: warning: no header providing "o2::constants::physics::MassPionNeutral" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/sgExclusiveJpsiMidrapidity.cxx` ```text PWGUD/Tasks/sgExclusiveJpsiMidrapidity.cxx:24:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgExclusiveJpsiMidrapidity.cxx:25:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgExclusiveJpsiMidrapidity.cxx:36:35: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusiveJpsiMidrapidity.cxx:53:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusiveJpsiMidrapidity.cxx:80:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusiveJpsiMidrapidity.cxx:80:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusiveJpsiMidrapidity.cxx:83:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusiveJpsiMidrapidity.cxx:86:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusiveJpsiMidrapidity.cxx:90:43: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusiveJpsiMidrapidity.cxx:90:99: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusiveJpsiMidrapidity.cxx:92:5: warning: no header providing "TString" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusiveJpsiMidrapidity.cxx:102:48: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusiveJpsiMidrapidity.cxx:130:58: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusiveJpsiMidrapidity.cxx:134:97: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusiveJpsiMidrapidity.cxx:147:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusiveJpsiMidrapidity.cxx:196:73: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/sgExclusivePhi.cxx` ```text PWGUD/Tasks/sgExclusivePhi.cxx:22:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:25:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:25:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGUD/Tasks/sgExclusivePhi.cxx:39:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:45:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:45:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:48:3: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:55:36: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:60:5: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:106:27: warning: no header providing "TMath::ATan2" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:110:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:112:43: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:112:99: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:119:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:132:48: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:172:90: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:179:85: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:256:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:292:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:295:44: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:312:76: warning: no header providing "o2::constants::physics::MassKaonCharged" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:319:13: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:452:67: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhi.cxx:685:19: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/sgExclusivePhiITSselections.cxx` ```text PWGUD/Tasks/sgExclusivePhiITSselections.cxx:22:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhiITSselections.cxx:25:12: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhiITSselections.cxx:25:12: warning: using decl 'array' is unused [misc-unused-using-decls] PWGUD/Tasks/sgExclusivePhiITSselections.cxx:38:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhiITSselections.cxx:49:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhiITSselections.cxx:49:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhiITSselections.cxx:51:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhiITSselections.cxx:53:43: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhiITSselections.cxx:53:99: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhiITSselections.cxx:60:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhiITSselections.cxx:73:48: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhiITSselections.cxx:138:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhiITSselections.cxx:170:34: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhiITSselections.cxx:206:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhiITSselections.cxx:209:44: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhiITSselections.cxx:224:67: warning: no header providing "o2::constants::physics::MassKaonCharged" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhiITSselections.cxx:328:19: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] PWGUD/Tasks/sgExclusivePhiITSselections.cxx:381:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/sgFITAnalyzer.cxx` ```text PWGUD/Tasks/sgFITAnalyzer.cxx:18:1: warning: included header UDHelpers.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:21:1: warning: included header PIDResponseTOF.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:27:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:37:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:37:28: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:43:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:46:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/sgFITAnalyzer.cxx:47:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:49:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:52:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:53:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:79:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:83:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:85:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:93:83: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:355:33: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:371:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:379:5: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:387:58: warning: no header providing "o2::constants::lhc::LHCMaxBunches" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:395:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:411:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:419:31: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:450:18: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFITAnalyzer.cxx:849:61: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/sgFourPiAnalyzer.cxx` ```text PWGUD/Tasks/sgFourPiAnalyzer.cxx:20:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgFourPiAnalyzer.cxx:25:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgFourPiAnalyzer.cxx:28:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgFourPiAnalyzer.cxx:31:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgFourPiAnalyzer.cxx:33:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGUD/Tasks/sgFourPiAnalyzer.cxx:39:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/sgFourPiAnalyzer.cxx:41:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFourPiAnalyzer.cxx:43:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFourPiAnalyzer.cxx:58:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFourPiAnalyzer.cxx:62:41: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFourPiAnalyzer.cxx:107:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFourPiAnalyzer.cxx:110:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/sgFourPiAnalyzer.cxx:138:20: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/sgInclJpsi.cxx` ```text PWGUD/Tasks/sgInclJpsi.cxx:26:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgInclJpsi.cxx:28:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGUD/Tasks/sgInclJpsi.cxx:34:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/sgInclJpsi.cxx:36:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/Tasks/sgInclJpsi.cxx:37:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/sgInclJpsi.cxx:56:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/sgInclJpsi.cxx:60:41: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/sgInclJpsi.cxx:194:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/Tasks/sgInclJpsi.cxx:197:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/sgInclJpsi.cxx:215:27: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] PWGUD/Tasks/sgInclJpsi.cxx:221:71: warning: no header providing "o2::constants::physics::MassMuon" is directly included [misc-include-cleaner] PWGUD/Tasks/sgInclJpsi.cxx:306:71: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/sgPIDAnalyzer.cxx` ```text PWGUD/Tasks/sgPIDAnalyzer.cxx:16:1: warning: included header SGSelector.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgPIDAnalyzer.cxx:17:1: warning: included header SGTrackSelector.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgPIDAnalyzer.cxx:18:1: warning: included header UDHelpers.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgPIDAnalyzer.cxx:24:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgPIDAnalyzer.cxx:25:1: warning: included header TTree.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgPIDAnalyzer.cxx:26:1: warning: included header TVector3.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgPIDAnalyzer.cxx:27:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgPIDAnalyzer.cxx:28:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgPIDAnalyzer.cxx:35:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDAnalyzer.cxx:37:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDAnalyzer.cxx:44:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDAnalyzer.cxx:47:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDAnalyzer.cxx:50:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDAnalyzer.cxx:53:46: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDAnalyzer.cxx:167:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDAnalyzer.cxx:181:20: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/sgPIDSpectra.cxx` ```text PWGUD/Tasks/sgPIDSpectra.cxx:18:1: warning: included header UDHelpers.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectra.cxx:24:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectra.cxx:26:1: warning: included header TVector3.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectra.cxx:34:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectra.cxx:38:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectra.cxx:54:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectra.cxx:58:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectra.cxx:60:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectra.cxx:64:64: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectra.cxx:135:33: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectra.cxx:142:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectra.cxx:148:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectra.cxx:154:22: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectra.cxx:155:69: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/sgPIDSpectraTable.cxx` ```text PWGUD/Tasks/sgPIDSpectraTable.cxx:17:1: warning: included header UDHelpers.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectraTable.cxx:24:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectraTable.cxx:25:1: warning: included header TTree.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectraTable.cxx:35:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectraTable.cxx:40:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectraTable.cxx:62:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectraTable.cxx:66:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectraTable.cxx:72:33: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGUD/Tasks/sgPIDSpectraTable.cxx:100:11: warning: variable 'tpcpi' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/sgPIDSpectraTable.cxx:100:18: warning: variable 'tpcka' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/sgPIDSpectraTable.cxx:100:25: warning: variable 'tpcel' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/sgPIDSpectraTable.cxx:100:32: warning: variable 'tpcpr' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/sgPIDSpectraTable.cxx:100:39: warning: variable 'tofpi' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/sgPIDSpectraTable.cxx:100:46: warning: variable 'tofka' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/sgPIDSpectraTable.cxx:100:53: warning: variable 'tofpr' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/sgPIDSpectraTable.cxx:100:60: warning: variable 'tofel' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/sgPIDSpectraTable.cxx:101:11: warning: variable 'tpcde' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/sgPIDSpectraTable.cxx:101:18: warning: variable 'tofde' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/sgPIDSpectraTable.cxx:101:25: warning: variable 'tpcmu' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/sgPIDSpectraTable.cxx:101:32: warning: variable 'tofmu' is not initialized [cppcoreguidelines-init-variables] ``` #### `PWGUD/Tasks/sgSixPiAnalyzer.cxx` ```text PWGUD/Tasks/sgSixPiAnalyzer.cxx:20:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgSixPiAnalyzer.cxx:25:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgSixPiAnalyzer.cxx:28:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgSixPiAnalyzer.cxx:31:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgSixPiAnalyzer.cxx:33:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGUD/Tasks/sgSixPiAnalyzer.cxx:40:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/sgSixPiAnalyzer.cxx:42:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/Tasks/sgSixPiAnalyzer.cxx:44:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/sgSixPiAnalyzer.cxx:59:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/sgSixPiAnalyzer.cxx:63:41: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/sgSixPiAnalyzer.cxx:108:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/Tasks/sgSixPiAnalyzer.cxx:111:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/sgSixPiAnalyzer.cxx:139:20: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/sgSpectraAnalyzer.cxx` ```text PWGUD/Tasks/sgSpectraAnalyzer.cxx:28:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgSpectraAnalyzer.cxx:40:37: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/Tasks/sgSpectraAnalyzer.cxx:55:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/sgSpectraAnalyzer.cxx:57:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/Tasks/sgSpectraAnalyzer.cxx:58:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/sgSpectraAnalyzer.cxx:74:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/sgSpectraAnalyzer.cxx:77:65: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/sgSpectraAnalyzer.cxx:225:9: warning: Value stored to 'gapSide' during its initialization is never read [clang-analyzer-deadcode.DeadStores] PWGUD/Tasks/sgSpectraAnalyzer.cxx:234:22: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/sgSpectraAnalyzer.cxx:234:27: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/sgSpectraAnalyzer.cxx:264:22: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/sgSpectraAnalyzer.cxx:303:28: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGUD/Tasks/sgSpectraAnalyzer.cxx:303:61: warning: no header providing "TMath::Exp" is directly included [misc-include-cleaner] PWGUD/Tasks/sgSpectraAnalyzer.cxx:307:22: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/Tasks/sgSpectraAnalyzer.cxx:358:22: warning: no header providing "std::pair" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/sgTwoPiAnalyzer.cxx` ```text PWGUD/Tasks/sgTwoPiAnalyzer.cxx:20:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgTwoPiAnalyzer.cxx:25:1: warning: included header DataTypes.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgTwoPiAnalyzer.cxx:28:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgTwoPiAnalyzer.cxx:31:1: warning: included header TString.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sgTwoPiAnalyzer.cxx:33:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGUD/Tasks/sgTwoPiAnalyzer.cxx:43:30: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/Tasks/sgTwoPiAnalyzer.cxx:56:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/sgTwoPiAnalyzer.cxx:57:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/Tasks/sgTwoPiAnalyzer.cxx:59:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/Tasks/sgTwoPiAnalyzer.cxx:60:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/sgTwoPiAnalyzer.cxx:75:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/sgTwoPiAnalyzer.cxx:79:41: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/sgTwoPiAnalyzer.cxx:124:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/Tasks/sgTwoPiAnalyzer.cxx:127:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/sgTwoPiAnalyzer.cxx:156:20: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/sginclusivePhiKstarSD.cxx` ```text PWGUD/Tasks/sginclusivePhiKstarSD.cxx:19:1: warning: included header UPCHelpers.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:28:1: warning: included header Vertex.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:31:1: warning: included header Vector3D.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:32:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:34:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:55:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:57:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:59:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:59:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:62:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:132:75: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:138:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:147:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:149:69: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:150:21: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:150:55: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:181:84: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:184:50: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:254:97: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:325:71: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:501:48: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:507:32: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:509:17: warning: no header providing "ROOT::Math::PxPyPzEVector" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:518:17: warning: no header providing "ROOT::Math::XYZVectorF" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:554:23: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:796:88: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:891:78: warning: no header providing "o2::constants::physics::MassKaonCharged" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:936:45: warning: no header providing "std::cos" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:936:76: warning: no header providing "std::sin" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:966:78: warning: no header providing "o2::constants::physics::MassProton" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:1108:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:1112:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:1117:40: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:1239:73: warning: no header providing "o2::constants::physics::Pdg" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:1240:102: warning: no header providing "o2::constants::physics::MassK0Star892" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:1241:30: warning: no header providing "TH3" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:1252:26: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/Tasks/sginclusivePhiKstarSD.cxx:1281:98: warning: no header providing "o2::constants::physics::MassPhi" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/testMcStdTabsRl.cxx` ```text PWGUD/Tasks/testMcStdTabsRl.cxx:20:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGUD/Tasks/testMcStdTabsRl.cxx:21:1: warning: included header set is not used directly [misc-include-cleaner] PWGUD/Tasks/testMcStdTabsRl.cxx:22:1: warning: included header utility is not used directly [misc-include-cleaner] PWGUD/Tasks/testMcStdTabsRl.cxx:36:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGUD/Tasks/testMcStdTabsRl.cxx:43:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/testMcStdTabsRl.cxx:46:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/Tasks/testMcStdTabsRl.cxx:48:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/testMcStdTabsRl.cxx:51:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/testMcStdTabsRl.cxx:53:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGUD/Tasks/testMcStdTabsRl.cxx:54:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGUD/Tasks/testMcStdTabsRl.cxx:63:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/testMcStdTabsRl.cxx:65:71: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/testMcStdTabsRl.cxx:80:64: warning: no header providing "o2::mcgenid::getGeneratorId" is directly included [misc-include-cleaner] PWGUD/Tasks/testMcStdTabsRl.cxx:82:16: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/Tasks/testMcStdTabsRl.cxx:85:17: warning: no header providing "ROOT::Math::LorentzVector" is directly included [misc-include-cleaner] PWGUD/Tasks/testMcStdTabsRl.cxx:85:43: warning: no header providing "ROOT::Math::PxPyPzE4D" is directly included [misc-include-cleaner] PWGUD/Tasks/testMcStdTabsRl.cxx:105:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/upcAnalysis.cxx` ```text PWGUD/Tasks/upcAnalysis.cxx:19:1: warning: included header TH1D.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcAnalysis.cxx:20:1: warning: included header TH2D.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcAnalysis.cxx:31:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGUD/Tasks/upcAnalysis.cxx:31:13: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGUD/Tasks/upcAnalysis.cxx:33:13: warning: no header providing "TH2D" is directly included [misc-include-cleaner] PWGUD/Tasks/upcAnalysis.cxx:39:38: warning: no header providing "o2::aod::evsel::kIsBBV0A" is directly included [misc-include-cleaner] PWGUD/Tasks/upcAnalysis.cxx:39:69: warning: no header providing "o2::aod::evsel::kIsBBV0C" is directly included [misc-include-cleaner] PWGUD/Tasks/upcAnalysis.cxx:39:101: warning: no header providing "o2::aod::evsel::kNoBGV0A" is directly included [misc-include-cleaner] PWGUD/Tasks/upcAnalysis.cxx:39:133: warning: no header providing "o2::aod::evsel::kNoBGV0C" is directly included [misc-include-cleaner] PWGUD/Tasks/upcAnalysis.cxx:43:39: warning: no header providing "o2::aod::evsel::kIsBBFDA" is directly included [misc-include-cleaner] PWGUD/Tasks/upcAnalysis.cxx:43:70: warning: no header providing "o2::aod::evsel::kIsBBFDC" is directly included [misc-include-cleaner] PWGUD/Tasks/upcAnalysis.cxx:43:102: warning: no header providing "o2::aod::evsel::kNoBGFDA" is directly included [misc-include-cleaner] PWGUD/Tasks/upcAnalysis.cxx:43:134: warning: no header providing "o2::aod::evsel::kNoBGFDC" is directly included [misc-include-cleaner] PWGUD/Tasks/upcAnalysis.cxx:47:24: warning: no header providing "kCUP9" is directly included [misc-include-cleaner] PWGUD/Tasks/upcAnalysis.cxx:58:5: warning: no header providing "UChar_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcAnalysis.cxx:60:25: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/upcCandidateAnalyzer.cxx` ```text PWGUD/Tasks/upcCandidateAnalyzer.cxx:32:8: warning: no header providing "std::unordered_map" is directly included [misc-include-cleaner] PWGUD/Tasks/upcCandidateAnalyzer.cxx:32:22: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcCandidateAnalyzer.cxx:55:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/Tasks/upcCandidateAnalyzer.cxx:57:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/upcCandidateAnalyzer.cxx:73:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/upcCandidateAnalyzer.cxx:75:40: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/upcCandidateAnalyzer.cxx:130:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/upcCandidateAnalyzer.cxx:132:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGUD/Tasks/upcCandidateAnalyzer.cxx:133:46: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/Tasks/upcCandidateAnalyzer.cxx:134:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/upcCandidateAnalyzer.cxx:134:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/upcCandidateAnalyzer.cxx:159:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/upcCandidateAnalyzer.cxx:192:23: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/upcCandidateAnalyzer.cxx:405:15: warning: variable 'mcPartId1' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/upcCandidateAnalyzer.cxx:406:15: warning: variable 'mcPartId2' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/upcCandidateAnalyzer.cxx:730:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/upcEventITSROFcounter.cxx` ```text PWGUD/Tasks/upcEventITSROFcounter.cxx:28:1: warning: included header EventSelectionParams.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcEventITSROFcounter.cxx:34:1: warning: included header TH1D.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcEventITSROFcounter.cxx:45:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/upcEventITSROFcounter.cxx:46:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/Tasks/upcEventITSROFcounter.cxx:49:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/upcEventITSROFcounter.cxx:49:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/upcEventITSROFcounter.cxx:51:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/upcEventITSROFcounter.cxx:58:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGUD/Tasks/upcEventITSROFcounter.cxx:60:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/upcEventITSROFcounter.cxx:63:85: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/upcEventITSROFcounter.cxx:86:5: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcEventITSROFcounter.cxx:93:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcEventITSROFcounter.cxx:97:7: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcEventITSROFcounter.cxx:103:61: warning: no header providing "o2::constants::lhc::LHCMaxBunches" is directly included [misc-include-cleaner] PWGUD/Tasks/upcEventITSROFcounter.cxx:106:20: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/upcEventITSROFcounter.cxx:106:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/upcEventITSROFcounter.cxx:164:72: warning: no header providing "o2::dataformats::TimeStamp" is directly included [misc-include-cleaner] PWGUD/Tasks/upcEventITSROFcounter.cxx:173:20: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/Tasks/upcEventITSROFcounter.cxx:214:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/upcForward.cxx` ```text PWGUD/Tasks/upcForward.cxx:22:1: warning: included header TH1D.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcForward.cxx:23:1: warning: included header TH2D.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcForward.cxx:38:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/upcForward.cxx:38:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/upcForward.cxx:40:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/upcForward.cxx:43:43: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/upcForward.cxx:43:99: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/upcForward.cxx:52:73: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGUD/Tasks/upcForward.cxx:63:5: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/upcForward.cxx:71:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/upcForward.cxx:75:23: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] PWGUD/Tasks/upcForward.cxx:79:43: warning: no header providing "o2::aod::evsel::kIsBBV0A" is directly included [misc-include-cleaner] PWGUD/Tasks/upcForward.cxx:80:43: warning: no header providing "o2::aod::evsel::kNoBGV0A" is directly included [misc-include-cleaner] PWGUD/Tasks/upcForward.cxx:82:43: warning: no header providing "o2::aod::evsel::kNoBGV0C" is directly included [misc-include-cleaner] PWGUD/Tasks/upcForward.cxx:84:43: warning: no header providing "o2::aod::evsel::kIsBBFDA" is directly included [misc-include-cleaner] PWGUD/Tasks/upcForward.cxx:85:43: warning: no header providing "o2::aod::evsel::kNoBGFDA" is directly included [misc-include-cleaner] PWGUD/Tasks/upcForward.cxx:86:43: warning: no header providing "o2::aod::evsel::kIsBBFDC" is directly included [misc-include-cleaner] PWGUD/Tasks/upcForward.cxx:87:43: warning: no header providing "o2::aod::evsel::kNoBGFDC" is directly included [misc-include-cleaner] PWGUD/Tasks/upcForward.cxx:119:22: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/upcJpsiCorr.cxx` ```text PWGUD/Tasks/upcJpsiCorr.cxx:29:1: warning: included header UDHelpers.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:50:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:50:42: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:51:40: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:97:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:146:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:150:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:176:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:220:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:264:33: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:273:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:277:79: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:481:21: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:483:27: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:483:40: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:487:24: warning: no header providing "std::count_if" is directly included [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:503:23: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:503:28: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:512:38: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:592:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:600:21: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/Tasks/upcJpsiCorr.cxx:1312:7: warning: uninitialized record type: 'recoTrack' [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/upcJpsiCorr.cxx:1313:7: warning: uninitialized record type: 'truePart' [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/upcJpsiCorr.cxx:1367:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/upcMft.cxx` ```text PWGUD/Tasks/upcMft.cxx:13:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:16:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:17:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:18:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:30:1: warning: included header Utils.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:36:1: warning: included header TrackMFT.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:45:65: warning: no header providing "ROOT::Math::MatRepSym" is directly included [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:46:38: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:51:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:60:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/upcMft.cxx:63:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:63:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:66:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:67:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:67:21: warning: no header providing "std::string" is directly included [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:76:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:84:94: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:88:137: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:140:10: warning: no header providing "std::map" is directly included [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:159:33: warning: no header providing "std::make_pair" is directly included [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:186:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:188:70: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:237:123: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGUD/Tasks/upcMft.cxx:299:123: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx` ```text PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:21:1: warning: included header EventSelectionParams.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:24:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:25:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:26:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:27:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:29:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:31:1: warning: included header GRPObject.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:34:1: warning: included header StepTHn.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:39:1: warning: included header algorithm is not used directly [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:103:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:104:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:104:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:107:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:155:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:161:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:164:52: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:174:58: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:180:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:190:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:192:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:208:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:236:128: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:244:106: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:336:23: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:445:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:618:9: warning: Value stored to 'nTracksCharged' is never read [clang-analyzer-deadcode.DeadStores] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:618:26: warning: Although the value stored to 'sumPt' is used in the enclosing expression, the value is never actually read from 'sumPt' [clang-analyzer-deadcode.DeadStores] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:678:9: warning: Value stored to 'nTracksCharged' is never read [clang-analyzer-deadcode.DeadStores] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:678:26: warning: Although the value stored to 'sumPt' is used in the enclosing expression, the value is never actually read from 'sumPt' [clang-analyzer-deadcode.DeadStores] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:688:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:712:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/upcPionAnalysis.cxx` ```text PWGUD/Tasks/upcPionAnalysis.cxx:16:1: warning: included header iostream is not used directly [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:37:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:68:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:68:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:71:3: warning: no header providing "Double_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:78:36: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:83:5: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:129:27: warning: no header providing "TMath::ATan2" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:141:5: warning: no header providing "Float_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:141:13: warning: variable 'deltaPhi' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/upcPionAnalysis.cxx:143:33: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:143:70: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:146:13: warning: variable 'part1' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/upcPionAnalysis.cxx:146:20: warning: variable 'part2' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/upcPionAnalysis.cxx:170:26: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:255:17: warning: no header providing "atan2" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:258:40: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:280:17: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:292:19: warning: no header providing "std::atanh" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:297:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:300:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:307:99: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:323:48: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:336:135: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:355:86: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:436:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:499:67: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:503:13: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPionAnalysis.cxx:522:24: warning: no header providing "TH2" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx` ```text PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:22:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:24:1: warning: included header GRPECSObject.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:25:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:30:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:31:1: warning: included header TMath.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:32:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:33:1: warning: included header TSystem.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:78:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:80:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:80:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:82:53: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:84:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:111:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:114:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:121:68: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:132:42: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:184:16: warning: no header providing "std::isinf" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:202:37: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:225:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:261:5: warning: no header providing "ROOT::Math::LorentzVector" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:261:19: warning: no header providing "ROOT::Math::PxPyPzM4D" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:282:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:317:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx` ```text PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:35:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:36:1: warning: included header Zorro.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:37:1: warning: included header ZorroSummary.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:38:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:39:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:40:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:41:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:42:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:44:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:46:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:51:1: warning: included header Track.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:53:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:54:1: warning: included header TFile.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:55:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:56:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:57:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:58:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:63:1: warning: included header map is not used directly [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:72:37: warning: no header providing "o2::aod::UDCollisions" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:72:56: warning: no header providing "o2::aod::UDCollisionsSels" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:72:79: warning: no header providing "o2::aod::UDZdcsReduced" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:74:33: warning: no header providing "o2::aod::UDTracks" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:74:48: warning: no header providing "o2::aod::UDTracksPID" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:74:66: warning: no header providing "o2::aod::UDTracksExtra" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:74:86: warning: no header providing "o2::aod::UDTracksFlags" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:74:106: warning: no header providing "o2::aod::UDTracksDCA" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:81:8: warning: constructor does not initialize these fields: pdgDB [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:82:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:82:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:84:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:89:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:127:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:129:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:129:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:148:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:150:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:153:42: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:154:56: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:247:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:265:19: warning: no header providing "RecoDecay" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:308:79: warning: no header providing "o2::aod::track::TPC" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:403:99: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:428:64: warning: no header providing "o2::aod::UDMcParticles" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:516:101: warning: no header providing "o2::aod::SGCollisions" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:516:120: warning: no header providing "o2::aod::UDCollisionSelExtras" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:536:25: warning: no header providing "std::count" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:546:47: warning: no header providing "TObject" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:558:149: warning: no header providing "o2::aod::UDMcCollsLabels" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:558:300: warning: no header providing "o2::aod::UDMcTrackLabels" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:558:341: warning: no header providing "o2::aod::UDMcCollisions" is directly included [misc-include-cleaner] PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:603:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/upcRhoAnalysis.cxx` ```text PWGUD/Tasks/upcRhoAnalysis.cxx:26:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:50:46: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:51:42: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:128:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:133:15: warning: member 'pcEtaCut' of type 'const float' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGUD/Tasks/upcRhoAnalysis.cxx:134:26: warning: member 'runNumbers' of type 'const std::vector' is const qualified [cppcoreguidelines-avoid-const-or-ref-data-members] PWGUD/Tasks/upcRhoAnalysis.cxx:135:3: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:137:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:179:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:184:71: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:185:77: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:190:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:190:36: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:196:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:201:92: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:202:72: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:226:17: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:226:22: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:227:17: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:458:21: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:460:27: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:460:40: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:464:24: warning: no header providing "std::count_if" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:639:51: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:667:43: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:699:34: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:700:10: warning: no header providing "std::shuffle" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:731:20: warning: no header providing "std::find" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:733:19: warning: no header providing "std::distance" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:754:14: warning: no header providing "std::isinf" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:805:125: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoAnalysis.cxx:1051:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/upcRhoPrimeAnalysis.cxx` ```text PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:22:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:23:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:24:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:26:1: warning: included header random is not used directly [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:27:1: warning: included header numeric is not used directly [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:43:42: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:89:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:92:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:122:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:125:48: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:157:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:160:31: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:160:36: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:234:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:264:54: warning: no header providing "std::hypot" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:303:46: warning: no header providing "std::pow" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:304:34: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:335:17: warning: no header providing "ROOT::Math::PxPyPzMVector" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:341:33: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:355:14: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:364:84: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGUD/Tasks/upcRhoPrimeAnalysis.cxx:371:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/upcTauRl.cxx` ```text PWGUD/Tasks/upcTauRl.cxx:21:1: warning: included header random is not used directly [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:38:1: warning: included header EventSelectionParams.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:39:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:40:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:41:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:42:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:43:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:46:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:47:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:59:42: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:97:62: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:128:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/upcTauRl.cxx:129:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:132:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:135:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:138:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:147:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:200:91: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:252:5: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:261:72: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:282:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:302:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:310:84: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:347:91: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:676:12: warning: no header providing "o2::framework::ProcessingContext" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:684:25: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:684:42: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:849:17: warning: no header providing "std::fmod" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:937:20: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:1058:17: warning: no header providing "ROOT::Math::LorentzVector" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:1058:43: warning: no header providing "ROOT::Math::PxPyPzE4D" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:1063:80: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:1067:80: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:1115:18: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:1115:83: warning: no header providing "std::fmod" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:1247:78: warning: no header providing "o2::constants::physics::MassMuon" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:1338:79: warning: no header providing "o2::constants::physics::MassKaonCharged" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauRl.cxx:2494:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/upcTauTau13topo.cxx` ```text PWGUD/Tasks/upcTauTau13topo.cxx:25:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:28:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:32:1: warning: included header DGPIDSelector.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:34:1: warning: included header UDHelpers.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:38:1: warning: included header PIDResponseTPC.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:53:42: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:56:44: warning: no header providing "int8_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:135:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:139:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:145:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:192:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:207:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:212:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:228:72: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:1631:23: warning: no header providing "std::log" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:1638:5: warning: no header providing "TVector3" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:1652:39: warning: no header providing "ROOT::Math::LorentzVector" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:1652:65: warning: no header providing "ROOT::Math::PxPyPzE4D" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:1665:38: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:1666:36: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:1728:27: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:1732:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:1732:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:1743:18: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:1844:11: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGUD/Tasks/upcTauTau13topo.cxx:1875:38: warning: no header providing "std::array" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:1954:11: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGUD/Tasks/upcTauTau13topo.cxx:1982:9: warning: result of integer division used in a floating point context; possible loss of precision [bugprone-integer-division] PWGUD/Tasks/upcTauTau13topo.cxx:2025:5: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:2136:14: warning: variable 'clusterSizes' is not initialized [cppcoreguidelines-init-variables] PWGUD/Tasks/upcTauTau13topo.cxx:2154:90: warning: no header providing "o2::constants::physics::MassPiPlus" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:2308:11: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:2400:90: warning: no header providing "o2::constants::physics::MassElectron" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTauTau13topo.cxx:4642:87: warning: operator has equivalent nested operands [misc-redundant-expression] PWGUD/Tasks/upcTauTau13topo.cxx:4887:44: warning: operator has equivalent nested operands [misc-redundant-expression] PWGUD/Tasks/upcTauTau13topo.cxx:5266:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/upcTestRctTables.cxx` ```text PWGUD/Tasks/upcTestRctTables.cxx:23:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] PWGUD/Tasks/upcTestRctTables.cxx:40:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTestRctTables.cxx:43:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTestRctTables.cxx:49:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTestRctTables.cxx:54:88: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTestRctTables.cxx:61:16: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/upcTestRctTables.cxx:77:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `PWGUD/Tasks/upcVetoAnalysis.cxx` ```text PWGUD/Tasks/upcVetoAnalysis.cxx:30:8: warning: constructor does not initialize these fields: hOrbitTotal, hOrbit0n0n, hOrbit0nXn, hOrbitXn0n, hOrbitXnXn, hOrbitZNA, hOrbitZNC, hOrbitTCE, hOrbitV0A_Total, hOrbitV0A_0n0n, hOrbitV0A_0nXn, hOrbitV0A_Xn0n, hOrbitV0A_XnXn, hOrbitT0A_Total, hOrbitT0A_0n0n, hOrbitT0A_0nXn, hOrbitT0A_Xn0n, hOrbitT0A_XnXn [cppcoreguidelines-pro-type-member-init] PWGUD/Tasks/upcVetoAnalysis.cxx:48:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] PWGUD/Tasks/upcVetoAnalysis.cxx:48:34: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] PWGUD/Tasks/upcVetoAnalysis.cxx:50:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] PWGUD/Tasks/upcVetoAnalysis.cxx:50:13: warning: no header providing "TH1D" is directly included [misc-include-cleaner] PWGUD/Tasks/upcVetoAnalysis.cxx:55:13: warning: no header providing "TH2D" is directly included [misc-include-cleaner] PWGUD/Tasks/upcVetoAnalysis.cxx:67:3: warning: no header providing "TH1" is directly included [misc-include-cleaner] PWGUD/Tasks/upcVetoAnalysis.cxx:87:3: warning: no header providing "int32_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcVetoAnalysis.cxx:89:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcVetoAnalysis.cxx:98:8: warning: no header providing "std::bitset" is directly included [misc-include-cleaner] PWGUD/Tasks/upcVetoAnalysis.cxx:102:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] PWGUD/Tasks/upcVetoAnalysis.cxx:113:15: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] PWGUD/Tasks/upcVetoAnalysis.cxx:131:59: warning: no header providing "Long64_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcVetoAnalysis.cxx:172:13: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] PWGUD/Tasks/upcVetoAnalysis.cxx:173:52: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] PWGUD/Tasks/upcVetoAnalysis.cxx:193:24: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] PWGUD/Tasks/upcVetoAnalysis.cxx:241:28: warning: no header providing "std::abs" is directly included [misc-include-cleaner] PWGUD/Tasks/upcVetoAnalysis.cxx:286:12: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] PWGUD/Tasks/upcVetoAnalysis.cxx:295:23: warning: no header providing "std::accumulate" is directly included [misc-include-cleaner] PWGUD/Tasks/upcVetoAnalysis.cxx:341:21: warning: no header providing "TH2" is directly included [misc-include-cleaner] PWGUD/Tasks/upcVetoAnalysis.cxx:386:29: warning: no header providing "std::lower_bound" is directly included [misc-include-cleaner] PWGUD/Tasks/upcVetoAnalysis.cxx:388:29: warning: no header providing "std::distance" is directly included [misc-include-cleaner] ``` ### Tools #### `Tools/KFparticle/KFUtilities.h` ```text Tools/KFparticle/KFUtilities.h:73:3: warning: uninitialized record type: 'trkpos_par' [cppcoreguidelines-pro-type-member-init] Tools/KFparticle/KFUtilities.h:74:3: warning: uninitialized record type: 'trkmom_par' [cppcoreguidelines-pro-type-member-init] Tools/KFparticle/KFUtilities.h:75:3: warning: uninitialized record type: 'trk_cov' [cppcoreguidelines-pro-type-member-init] Tools/KFparticle/KFUtilities.h:138:3: warning: uninitialized record type: 'cv' [cppcoreguidelines-pro-type-member-init] Tools/KFparticle/KFUtilities.h:146:9: warning: variable 'Mini' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:146:15: warning: variable 'SigmaMini' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:146:26: warning: variable 'M' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:146:29: warning: variable 'SigmaM' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:168:3: warning: uninitialized record type: 'pxpypz' [cppcoreguidelines-pro-type-member-init] Tools/KFparticle/KFUtilities.h:168:3: warning: uninitialized record type: 'xyz' [cppcoreguidelines-pro-type-member-init] Tools/KFparticle/KFUtilities.h:169:3: warning: uninitialized record type: 'cv' [cppcoreguidelines-pro-type-member-init] Tools/KFparticle/KFUtilities.h:195:9: warning: variable 'xVtxP' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:195:16: warning: variable 'yVtxP' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:195:23: warning: variable 'zVtxP' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:195:30: warning: variable 'xVtxS' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:195:37: warning: variable 'yVtxS' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:195:44: warning: variable 'zVtxS' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:195:51: warning: variable 'px' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:195:55: warning: variable 'py' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:219:9: warning: variable 'xVtxP' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:219:16: warning: variable 'yVtxP' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:219:23: warning: variable 'xVtxS' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:219:30: warning: variable 'yVtxS' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:219:37: warning: variable 'px' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:245:9: warning: variable 'px0' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:245:14: warning: variable 'py0' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:245:19: warning: variable 'pz0' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:245:24: warning: variable 'px1' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:245:29: warning: variable 'py1' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:272:9: warning: variable 'xVtxP' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:272:16: warning: variable 'yVtxP' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:272:23: warning: variable 'zVtxP' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:272:30: warning: variable 'xVtxS' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:272:37: warning: variable 'yVtxS' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:272:44: warning: variable 'zVtxS' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:272:51: warning: variable 'px' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:272:55: warning: variable 'py' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:390:9: warning: variable 'l' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:390:12: warning: variable 'dl' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:403:9: warning: variable 'distanceToVertexXY' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:403:29: warning: variable 'errDistanceToVertexXY' is not initialized [cppcoreguidelines-init-variables] Tools/KFparticle/KFUtilities.h:35:10: error: 'KFPTrack.h' file not found [clang-diagnostic-error] ``` #### `Tools/KFparticle/qaKFEventTrack.cxx` ```text Tools/KFparticle/qaKFEventTrack.cxx:21:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:22:1: warning: included header iostream is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:30:1: warning: included header DCA.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:31:1: warning: included header Track.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:34:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:41:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:42:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:43:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:50:1: warning: included header KFParticleBase.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:51:1: warning: included header KFVertex.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:64:8: warning: constructor does not initialize these fields: ccdb, lut, runNumber [cppcoreguidelines-pro-type-member-init] Tools/KFparticle/qaKFEventTrack.cxx:67:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:72:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:73:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:79:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:79:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:118:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:152:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:160:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:175:56: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:185:40: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:211:36: warning: no header providing "TH1" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:255:53: warning: no header providing "int64_t" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:361:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:520:8: warning: constructor does not initialize these fields: ccdb, lut, runNumber [cppcoreguidelines-pro-type-member-init] Tools/KFparticle/qaKFEventTrack.cxx:594:46: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.cxx:637:71: warning: no header providing "o2::constants::lhc::LHCBunchSpacingNS" is directly included [misc-include-cleaner] ``` #### `Tools/KFparticle/qaKFEventTrack.h` ```text Tools/KFparticle/qaKFEventTrack.h:18:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.h:20:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.h:23:10: warning: no header providing "BIT" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFEventTrack.h:45:40: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] ``` #### `Tools/KFparticle/qaKFParticle.cxx` ```text Tools/KFparticle/qaKFParticle.cxx:20:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:24:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:32:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:38:1: warning: included header DCA.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:39:1: warning: included header Track.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:43:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:44:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:45:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:56:1: warning: included header KFParticleBase.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:57:1: warning: included header KFVertex.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:70:8: warning: constructor does not initialize these fields: ccdb, lut, runNumber [cppcoreguidelines-pro-type-member-init] Tools/KFparticle/qaKFParticle.cxx:73:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:78:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:79:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:86:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:86:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:161:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:192:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:200:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:214:98: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:223:60: warning: no header providing "o2::framework::kTH2D" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:274:34: warning: no header providing "TH1" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:465:65: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tools/KFparticle/qaKFParticle.cxx:467:90: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tools/KFparticle/qaKFParticle.cxx:469:90: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tools/KFparticle/qaKFParticle.cxx:472:39: warning: no header providing "sqrt" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:473:15: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tools/KFparticle/qaKFParticle.cxx:484:65: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tools/KFparticle/qaKFParticle.cxx:486:90: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tools/KFparticle/qaKFParticle.cxx:488:90: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tools/KFparticle/qaKFParticle.cxx:492:15: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tools/KFparticle/qaKFParticle.cxx:601:54: warning: no header providing "int64_t" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:673:35: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:673:53: warning: no header providing "o2::soa::CombinationsStrictlyUpperIndexPolicy" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:864:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:894:35: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:964:7: warning: no header providing "int8_t" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticle.cxx:969:68: warning: no header providing "std::array" is directly included [misc-include-cleaner] ``` #### `Tools/KFparticle/qaKFParticle.h` ```text Tools/KFparticle/qaKFParticle.h:18:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticle.h:20:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticle.h:23:13: warning: no header providing "BIT" is directly included [misc-include-cleaner] ``` #### `Tools/KFparticle/qaKFParticleLc.cxx` ```text Tools/KFparticle/qaKFParticleLc.cxx:20:1: warning: included header TableHelper.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:24:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:32:1: warning: included header GeometryManager.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:36:1: warning: included header HistogramRegistry.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:38:1: warning: included header DCA.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:39:1: warning: included header Track.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:42:1: warning: included header RecoDecay.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:43:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:44:1: warning: included header TrackSelectionDefaults.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:45:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:56:1: warning: included header KFParticleBase.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:57:1: warning: included header KFVertex.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:70:8: warning: constructor does not initialize these fields: ccdb, lut, runNumber [cppcoreguidelines-pro-type-member-init] Tools/KFparticle/qaKFParticleLc.cxx:73:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:78:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:79:13: warning: no header providing "o2::base::MatLayerCylSet" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:164:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:195:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:361:65: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tools/KFparticle/qaKFParticleLc.cxx:363:90: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tools/KFparticle/qaKFParticleLc.cxx:365:90: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tools/KFparticle/qaKFParticleLc.cxx:368:39: warning: no header providing "sqrt" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:369:15: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tools/KFparticle/qaKFParticleLc.cxx:380:65: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tools/KFparticle/qaKFParticleLc.cxx:382:90: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tools/KFparticle/qaKFParticleLc.cxx:384:90: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tools/KFparticle/qaKFParticleLc.cxx:388:15: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tools/KFparticle/qaKFParticleLc.cxx:399:65: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tools/KFparticle/qaKFParticleLc.cxx:401:90: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tools/KFparticle/qaKFParticleLc.cxx:403:90: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tools/KFparticle/qaKFParticleLc.cxx:407:15: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tools/KFparticle/qaKFParticleLc.cxx:431:55: warning: no header providing "int64_t" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:489:43: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:489:61: warning: no header providing "o2::soa::CombinationsStrictlyUpperIndexPolicy" is directly included [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.cxx:601:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `Tools/KFparticle/qaKFParticleLc.h` ```text Tools/KFparticle/qaKFParticleLc.h:18:1: warning: included header AnalysisTask.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.h:20:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] Tools/KFparticle/qaKFParticleLc.h:23:13: warning: no header providing "BIT" is directly included [misc-include-cleaner] ``` #### `Tools/ML/model.cxx` ```text Tools/ML/model.cxx:87:46: warning: no header providing "GraphOptimizationLevel" is directly included [misc-include-cleaner] Tools/ML/model.cxx:90:37: warning: no header providing "ORT_LOGGING_LEVEL_WARNING" is directly included [misc-include-cleaner] ``` #### `Tools/ML/model.h` ```text Tools/ML/model.h:25:10: error: 'onnxruntime_cxx_api.h' file not found [clang-diagnostic-error] Tools/ML/model.h:95:34: warning: no header providing "OrtAllocatorType" is directly included [misc-include-cleaner] Tools/ML/model.h:95:71: warning: no header providing "OrtMemType" is directly included [misc-include-cleaner] ``` #### `Tools/PIDML/pidMlBatchEffAndPurProducer.cxx` ```text Tools/PIDML/pidMlBatchEffAndPurProducer.cxx:114:82: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlBatchEffAndPurProducer.cxx:114:135: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlBatchEffAndPurProducer.cxx:115:86: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlBatchEffAndPurProducer.cxx:115:143: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlBatchEffAndPurProducer.cxx:134:7: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] Tools/PIDML/pidMlBatchEffAndPurProducer.cxx:183:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ``` #### `Tools/PIDML/pidMlEffAndPurProducer.cxx` ```text Tools/PIDML/pidMlEffAndPurProducer.cxx:79:5: warning: switching on non-enum value without default case may not cover all cases [bugprone-switch-missing-default-case] ``` #### `Tools/PIDML/pidMlProducer.cxx` ```text Tools/PIDML/pidMlProducer.cxx:113:93: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlProducer.cxx:114:95: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlProducer.cxx:115:93: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlProducer.cxx:116:110: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlProducer.cxx:117:95: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlProducer.cxx:118:93: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlProducer.cxx:119:77: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlProducer.cxx:120:79: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlProducer.cxx:121:79: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlProducer.cxx:122:79: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlProducer.cxx:123:79: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlProducer.cxx:124:77: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlProducer.cxx:125:77: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlProducer.cxx:126:77: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlProducer.cxx:127:85: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlProducer.cxx:128:93: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlProducer.cxx:129:101: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlProducer.cxx:130:85: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlProducer.cxx:131:83: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlProducer.cxx:138:89: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tools/PIDML/pidMlProducer.cxx:139:93: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] ``` #### `Tools/PIDML/pidOnnxModel.h` ```text Tools/PIDML/pidOnnxModel.h:65:6: warning: function 'readJsonFile' is not needed and will not be emitted [clang-diagnostic-unneeded-internal-declaration] ``` ### Tutorials #### `Tutorials/ML/applyMlSelection.cxx` ```text Tutorials/ML/applyMlSelection.cxx:36:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/ML/applyMlSelection.cxx:40:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] Tutorials/ML/applyMlSelection.cxx:42:16: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] Tutorials/ML/applyMlSelection.cxx:50:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] Tutorials/ML/applyMlSelection.cxx:52:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/ML/applyMlSelection.cxx:52:51: warning: no header providing "o2::aod::hf_track_index::hfflag" is directly included [misc-include-cleaner] Tutorials/ML/applyMlSelection.cxx:52:72: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] Tutorials/ML/applyMlSelection.cxx:52:81: warning: no header providing "BIT" is directly included [misc-include-cleaner] Tutorials/ML/applyMlSelection.cxx:52:106: warning: no header providing "o2::aod::hf_cand_3prong::DecayType" is directly included [misc-include-cleaner] Tutorials/ML/applyMlSelection.cxx:55:13: warning: no header providing "o2::ccdb::CcdbApi" is directly included [misc-include-cleaner] Tutorials/ML/applyMlSelection.cxx:64:103: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/ML/applyMlSelection.cxx:67:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/ML/applyMlSelection.cxx:79:21: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/ML/applyMlSelection.cxx:96:38: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `Tutorials/ML/applyOnnxModel.cxx` ```text Tutorials/ML/applyOnnxModel.cxx:29:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/ML/applyOnnxModel.cxx:29:21: warning: no header providing "std::string" is directly included [misc-include-cleaner] Tutorials/ML/applyOnnxModel.cxx:35:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] Tutorials/ML/applyOnnxModel.cxx:37:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/ML/applyOnnxModel.cxx:43:12: warning: no header providing "o2::framework::ProcessingContext" is directly included [misc-include-cleaner] Tutorials/ML/applyOnnxModel.cxx:54:53: warning: no header providing "o2::framework::QuitRequest" is directly included [misc-include-cleaner] ``` #### `Tutorials/OpenData/flowAnalysis.cxx` ```text Tutorials/OpenData/flowAnalysis.cxx:34:1: warning: included header TH3.h is not used directly [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:40:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] Tutorials/OpenData/flowAnalysis.cxx:49:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:71:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:75:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:77:54: warning: no header providing "uint16_t" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:77:79: warning: no header providing "o2::aod::collision::CollisionFlagsRun2" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:78:93: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:182:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:184:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:203:62: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:204:81: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:205:60: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:209:75: warning: no header providing "o2::framework::kTH2I" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:211:62: warning: no header providing "o2::framework::kTProfile" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:217:36: warning: no header providing "o2::framework::kTProfile2D" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:259:43: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:276:29: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:276:56: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:276:83: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:280:24: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:301:30: warning: no header providing "Double_t" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:302:7: warning: no header providing "Short_t" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:327:27: warning: no header providing "TMath::Sqrt" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:328:61: warning: no header providing "o2::aod::collision::Run2VertexerZ" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:340:16: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:397:5: warning: no header providing "Int_t" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:407:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:412:33: warning: no header providing "TMath::Sin" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:413:33: warning: no header providing "TMath::Cos" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:454:27: warning: no header providing "TMath::TwoPi" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:460:26: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:461:18: warning: no header providing "fmod" is directly included [misc-include-cleaner] Tutorials/OpenData/flowAnalysis.cxx:467:9: warning: no header providing "Float_t" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx` ```text Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:13:1: warning: included header chrono is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:16:1: warning: included header TComplex.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:17:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:18:1: warning: included header TH2D.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:19:1: warning: included header TMath.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:20:1: warning: included header TVector2.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:25:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:28:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:29:1: warning: included header StaticFor.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:36:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:38:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:49:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:51:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:61:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:71:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:73:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:76:56: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:82:18: warning: no header providing "Form" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:82:43: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:94:46: warning: no header providing "o2::aod::evsel::kIsGoodZvtxFT0vsPV" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:97:46: warning: no header providing "o2::aod::evsel::kNoSameBunchPileup" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:100:50: warning: no header providing "o2::aod::evsel::kNoCollInTimeRangeStandard" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/qVectorstutorial.cxx:164:15: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx` ```text Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:19:1: warning: included header EventPlaneHelper.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:21:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:25:1: warning: included header Qvectors.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:29:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:30:1: warning: included header GRPMagField.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:31:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:34:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:37:1: warning: included header TF1.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:38:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:40:1: warning: included header algorithm is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:41:1: warning: included header map is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:42:1: warning: included header numeric is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:44:1: warning: included header unordered_map is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:45:1: warning: included header utility is not used directly [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:54:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:56:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:57:3: warning: no header providing "o2::aod::rctsel::RCTFlagsChecker" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:59:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:70:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:80:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:80:28: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:80:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:81:41: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:81:70: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:81:178: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:82:34: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:82:44: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:83:43: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:83:56: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:85:27: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:89:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:93:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:99:5: warning: no header providing "int64_t" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:99:32: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:99:59: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:99:86: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:102:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:102:49: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:106:53: warning: no header providing "o2::constants::math::PI" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:114:73: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:140:63: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:164:30: warning: no header providing "std::atan2" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:186:7: warning: no header providing "TProfile" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:186:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:187:25: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:188:26: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:208:24: warning: no header providing "std::cos" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:209:24: warning: no header providing "std::sin" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:214:49: warning: no header providing "std::sqrt" is directly included [misc-include-cleaner] Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx:214:59: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask1.cxx` ```text Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask1.cxx:19:1: warning: included header femtoDreamMath.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask1.cxx:20:1: warning: included header femtoDreamUtils.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask1.cxx:31:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask1.cxx:48:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask1.cxx:48:55: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask1.cxx:51:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask1.cxx:54:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask1.cxx:73:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask2.cxx` ```text Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask2.cxx:19:1: warning: included header femtoDreamMath.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask2.cxx:20:1: warning: included header femtoDreamUtils.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask2.cxx:31:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask2.cxx:39:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask2.cxx:39:45: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask2.cxx:43:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask2.cxx:62:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask2.cxx:62:55: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask2.cxx:69:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask2.cxx:73:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask2.cxx:92:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask3.cxx` ```text Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask3.cxx:19:1: warning: included header femtoDreamMath.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask3.cxx:20:1: warning: included header femtoDreamUtils.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask3.cxx:31:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask3.cxx:40:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask3.cxx:40:45: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask3.cxx:44:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask3.cxx:55:16: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask3.cxx:65:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask3.cxx:65:79: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask3.cxx:68:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask3.cxx:68:55: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask3.cxx:71:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask3.cxx:72:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask3.cxx:75:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask3.cxx:79:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask3.cxx:98:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask4.cxx` ```text Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask4.cxx:19:1: warning: included header femtoDreamMath.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask4.cxx:20:1: warning: included header femtoDreamUtils.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask4.cxx:31:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask4.cxx:39:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask4.cxx:39:45: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask4.cxx:43:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask4.cxx:53:16: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask4.cxx:65:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask4.cxx:65:79: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask4.cxx:68:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask4.cxx:68:55: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask4.cxx:71:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask4.cxx:72:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask4.cxx:75:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask4.cxx:79:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask4.cxx:98:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx` ```text Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:17:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:32:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:40:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:40:45: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:44:37: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:54:16: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:66:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:66:79: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:66:209: warning: no header providing "o2::framework::expressions::ifnode" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:66:271: warning: no header providing "ncheckbit" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:70:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:70:55: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:73:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:74:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:82:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:86:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:107:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:137:29: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:137:47: warning: no header providing "o2::soa::CombinationsStrictlyUpperIndexPolicy" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:142:29: warning: no header providing "o2::soa::combinations" is directly included [misc-include-cleaner] Tutorials/PWGCF/FemtoFramework/src/CFTutorialTask5.cxx:142:47: warning: no header providing "o2::soa::CombinationsFullIndexPolicy" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx` ```text Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:16:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:17:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:21:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:25:1: warning: included header GFWPowerArray.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:27:1: warning: included header GFWCumulant.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:28:1: warning: included header TList.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:29:1: warning: included header TProfile.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:30:1: warning: included header TRandom3.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:36:59: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:38:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:50:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:51:66: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:53:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:56:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:56:28: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:56:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:57:42: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:57:76: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:57:200: warning: no header providing "uint8_t" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:57:232: warning: no header providing "o2::aod::track::tpcChi2NCl" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:60:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:61:16: warning: no header providing "int64_t" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:61:72: warning: no header providing "std::chrono::duration_cast" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:61:99: warning: no header providing "std::chrono::milliseconds" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:61:126: warning: no header providing "std::chrono::system_clock" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:69:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:71:30: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:71:44: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:71:54: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:72:50: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:72:84: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:74:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:81:31: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:89:80: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:94:59: warning: no header providing "ConstStr" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:96:12: warning: variable 'dnx' is not initialized [cppcoreguidelines-init-variables] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:96:17: warning: variable 'val' is not initialized [cppcoreguidelines-init-variables] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:97:40: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:102:18: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:109:63: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfcorrelations.cxx` ```text Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfcorrelations.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfcorrelations.cxx:20:1: warning: included header HistogramRegistry.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfcorrelations.cxx:21:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfcorrelations.cxx:22:1: warning: included header MathConstants.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfcorrelations.cxx:23:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfcorrelations.cxx:24:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfcorrelations.cxx:25:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfcorrelations.cxx:26:1: warning: included header CorrelationContainer.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfcorrelations.cxx:27:1: warning: included header PairCuts.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfcorrelations.cxx:34:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfo2physics.cxx` ```text Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfo2physics.cxx:19:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfo2physics.cxx:38:21: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfo2physics.cxx:38:44: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGEM/Cocktail/plotLFCocktail.C` ```text Tutorials/PWGEM/Cocktail/plotLFCocktail.C:13:1: error: unknown type name 'TH1F' [clang-diagnostic-error] Tutorials/PWGEM/Cocktail/plotLFCocktail.C:14:1: error: unknown type name 'TH1F' [clang-diagnostic-error] Tutorials/PWGEM/Cocktail/plotLFCocktail.C:15:1: error: unknown type name 'TString' [clang-diagnostic-error] Tutorials/PWGEM/Cocktail/plotLFCocktail.C:17:1: error: unknown type name 'TString' [clang-diagnostic-error] Tutorials/PWGEM/Cocktail/plotLFCocktail.C:27:17: error: unknown type name 'TFile' [clang-diagnostic-error] Tutorials/PWGEM/Cocktail/plotLFCocktail.C:27:30: error: unknown type name 'TH1F' [clang-diagnostic-error] Tutorials/PWGEM/Cocktail/plotLFCocktail.C:27:45: error: unknown type name 'TString' [clang-diagnostic-error] Tutorials/PWGEM/Cocktail/plotLFCocktail.C:31:17: error: use of undeclared identifier 'TH1F' [clang-diagnostic-error] Tutorials/PWGEM/Cocktail/plotLFCocktail.C:31:22: error: expected expression [clang-diagnostic-error] Tutorials/PWGEM/Cocktail/plotLFCocktail.C:39:21: error: unknown type name 'TString' [clang-diagnostic-error] Tutorials/PWGEM/Cocktail/plotLFCocktail.C:39:29: error: cannot initialize a parameter of type 'int' with an lvalue of type 'const char[21]' [clang-diagnostic-error] Tutorials/PWGEM/Cocktail/plotLFCocktail.C:42:3: error: unknown type name 'TFile' [clang-diagnostic-error] Tutorials/PWGEM/Cocktail/plotLFCocktail.C:42:17: error: use of undeclared identifier 'TFile' [clang-diagnostic-error] Tutorials/PWGEM/Cocktail/plotLFCocktail.C:44:3: error: unknown type name 'TH1I' [clang-diagnostic-error] Tutorials/PWGEM/Cocktail/plotLFCocktail.C:45:6: error: use of undeclared identifier 'TH1I' [clang-diagnostic-error] Tutorials/PWGEM/Cocktail/plotLFCocktail.C:45:11: error: expected expression [clang-diagnostic-error] Tutorials/PWGEM/Cocktail/plotLFCocktail.C:51:21: error: unknown type name 'TCanvas' [clang-diagnostic-error] Tutorials/PWGEM/Cocktail/plotLFCocktail.C:60:3: error: use of undeclared identifier 'gPad' [clang-diagnostic-error] Tutorials/PWGEM/Cocktail/plotLFCocktail.C:65:3: error: use of undeclared identifier 'gPad' [clang-diagnostic-error] ``` #### `Tutorials/PWGEM/emcclustertutorial.cxx` ```text Tutorials/PWGEM/emcclustertutorial.cxx:14:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] Tutorials/PWGEM/emcclustertutorial.cxx:17:1: warning: included header InteractionRecord.h is not used directly [misc-include-cleaner] Tutorials/PWGEM/emcclustertutorial.cxx:18:1: warning: included header AnalysisCluster.h is not used directly [misc-include-cleaner] Tutorials/PWGEM/emcclustertutorial.cxx:19:1: warning: included header Cell.h is not used directly [misc-include-cleaner] Tutorials/PWGEM/emcclustertutorial.cxx:20:1: warning: included header Constants.h is not used directly [misc-include-cleaner] Tutorials/PWGEM/emcclustertutorial.cxx:21:1: warning: included header Geometry.h is not used directly [misc-include-cleaner] Tutorials/PWGEM/emcclustertutorial.cxx:22:1: warning: included header BadChannelMap.h is not used directly [misc-include-cleaner] Tutorials/PWGEM/emcclustertutorial.cxx:31:1: warning: included header map is not used directly [misc-include-cleaner] Tutorials/PWGEM/emcclustertutorial.cxx:32:1: warning: included header memory is not used directly [misc-include-cleaner] Tutorials/PWGEM/emcclustertutorial.cxx:33:1: warning: included header sstream is not used directly [misc-include-cleaner] Tutorials/PWGEM/emcclustertutorial.cxx:52:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGEM/emcclustertutorial.cxx:60:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGEM/emcclustertutorial.cxx:62:68: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGEM/emcclustertutorial.cxx:75:37: warning: no header providing "kINT7" is directly included [misc-include-cleaner] Tutorials/PWGEM/emcclustertutorial.cxx:79:37: warning: no header providing "kTVXinEMC" is directly included [misc-include-cleaner] Tutorials/PWGEM/emcclustertutorial.cxx:87:34: warning: no header providing "TMath::Abs" is directly included [misc-include-cleaner] Tutorials/PWGEM/emcclustertutorial.cxx:95:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGEM/pcm/pcmtutorial.cxx` ```text Tutorials/PWGEM/pcm/pcmtutorial.cxx:15:1: warning: included header TMath.h is not used directly [misc-include-cleaner] Tutorials/PWGEM/pcm/pcmtutorial.cxx:16:1: warning: included header Vector4D.h is not used directly [misc-include-cleaner] Tutorials/PWGEM/pcm/pcmtutorial.cxx:21:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] Tutorials/PWGEM/pcm/pcmtutorial.cxx:22:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] Tutorials/PWGEM/pcm/pcmtutorial.cxx:24:1: warning: included header PCMUtilities.h is not used directly [misc-include-cleaner] Tutorials/PWGEM/pcm/pcmtutorial.cxx:34:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGEM/pcm/pcmtutorial.cxx:42:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGEM/pcm/pcmtutorial.cxx:45:65: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGEM/pcm/pcmtutorial.cxx:49:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGEM/pcm/pcmtutorial.cxx:51:40: warning: no header providing "TH1" is directly included [misc-include-cleaner] Tutorials/PWGEM/pcm/pcmtutorial.cxx:51:79: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/PWGEM/pcm/pcmtutorial.cxx:94:86: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] Tutorials/PWGEM/pcm/pcmtutorial.cxx:94:102: warning: no header providing "o2::aod::pidTPCFullEl" is directly included [misc-include-cleaner] Tutorials/PWGEM/pcm/pcmtutorial.cxx:95:56: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] Tutorials/PWGEM/pcm/pcmtutorial.cxx:102:22: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGHF/taskMini.cxx` ```text Tutorials/PWGHF/taskMini.cxx:39:1: warning: included header TH1.h is not used directly [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Resonance/resonancesCombine.cxx` ```text Tutorials/PWGLF/Resonance/resonancesCombine.cxx:18:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesCombine.cxx:24:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesCombine.cxx:34:8: warning: constructor does not initialize these fields: rapidity, mass, pT, paircharge [cppcoreguidelines-pro-type-member-init] Tutorials/PWGLF/Resonance/resonancesCombine.cxx:35:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesCombine.cxx:35:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesCombine.cxx:38:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesCombine.cxx:67:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesCombine.cxx:69:40: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesCombine.cxx:70:67: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesCombine.cxx:81:85: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesCombine.cxx:130:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesCombine.cxx:175:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Resonance/resonancesMicrotrack.cxx` ```text Tutorials/PWGLF/Resonance/resonancesMicrotrack.cxx:17:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesMicrotrack.cxx:18:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesMicrotrack.cxx:21:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesMicrotrack.cxx:23:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesMicrotrack.cxx:34:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesMicrotrack.cxx:34:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesMicrotrack.cxx:37:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesMicrotrack.cxx:59:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesMicrotrack.cxx:61:40: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesMicrotrack.cxx:62:67: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesMicrotrack.cxx:149:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonancesMicrotrack.cxx:188:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Resonance/resonances_step0.cxx` ```text Tutorials/PWGLF/Resonance/resonances_step0.cxx:16:1: warning: included header TLorentzVector.h is not used directly [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step0.cxx:19:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step0.cxx:30:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step0.cxx:30:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step0.cxx:33:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step0.cxx:38:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step0.cxx:41:40: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step0.cxx:42:44: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step0.cxx:63:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Resonance/resonances_step1.cxx` ```text Tutorials/PWGLF/Resonance/resonances_step1.cxx:17:1: warning: included header TPDGCode.h is not used directly [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step1.cxx:21:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step1.cxx:31:8: warning: constructor does not initialize these fields: rapidity, mass, pT, paircharge [cppcoreguidelines-pro-type-member-init] Tutorials/PWGLF/Resonance/resonances_step1.cxx:32:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step1.cxx:32:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step1.cxx:35:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step1.cxx:59:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step1.cxx:62:40: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step1.cxx:63:67: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step1.cxx:72:85: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step1.cxx:125:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Resonance/resonances_step2.cxx` ```text Tutorials/PWGLF/Resonance/resonances_step2.cxx:20:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step2.cxx:30:8: warning: constructor does not initialize these fields: rapidity, mass, pT, paircharge [cppcoreguidelines-pro-type-member-init] Tutorials/PWGLF/Resonance/resonances_step2.cxx:31:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step2.cxx:32:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step2.cxx:32:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step2.cxx:35:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step2.cxx:57:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step2.cxx:57:46: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step2.cxx:64:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step2.cxx:67:40: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step2.cxx:68:67: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step2.cxx:78:85: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step2.cxx:132:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step2.cxx:189:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step2.cxx:192:30: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step2.cxx:192:66: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step2.cxx:197:5: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Resonance/resonances_step3.cxx` ```text Tutorials/PWGLF/Resonance/resonances_step3.cxx:16:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step3.cxx:18:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step3.cxx:29:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step3.cxx:29:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step3.cxx:32:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step3.cxx:37:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step3.cxx:40:40: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step3.cxx:41:44: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step3.cxx:64:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Resonance/resonances_step4.cxx` ```text Tutorials/PWGLF/Resonance/resonances_step4.cxx:16:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step4.cxx:18:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step4.cxx:29:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step4.cxx:29:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step4.cxx:32:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step4.cxx:37:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step4.cxx:37:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step4.cxx:41:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step4.cxx:43:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step4.cxx:47:40: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step4.cxx:48:44: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step4.cxx:53:60: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step4.cxx:81:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step4.cxx:85:11: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] ``` #### `Tutorials/PWGLF/Resonance/resonances_step5.cxx` ```text Tutorials/PWGLF/Resonance/resonances_step5.cxx:16:1: warning: included header PhysicsConstants.h is not used directly [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step5.cxx:18:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step5.cxx:30:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step5.cxx:31:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step5.cxx:32:17: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step5.cxx:32:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step5.cxx:34:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step5.cxx:34:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step5.cxx:37:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step5.cxx:58:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step5.cxx:61:40: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step5.cxx:62:44: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step5.cxx:114:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step5.cxx:126:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Resonance/resonances_step6.cxx` ```text Tutorials/PWGLF/Resonance/resonances_step6.cxx:20:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step6.cxx:30:8: warning: constructor does not initialize these fields: rapidity, mass, pT, paircharge [cppcoreguidelines-pro-type-member-init] Tutorials/PWGLF/Resonance/resonances_step6.cxx:32:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step6.cxx:33:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step6.cxx:34:17: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step6.cxx:34:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step6.cxx:36:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step6.cxx:36:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step6.cxx:40:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step6.cxx:40:38: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step6.cxx:42:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step6.cxx:71:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step6.cxx:73:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step6.cxx:78:40: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step6.cxx:79:44: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step6.cxx:87:77: warning: no header providing "o2::framework::kTH3F" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step6.cxx:88:69: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step6.cxx:140:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGLF/Resonance/resonances_step6.cxx:178:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_skeleton.cxx` ```text Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_skeleton.cxx:31:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_skeleton.cxx:31:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_skeleton.cxx:34:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_skeleton.cxx:39:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_skeleton.cxx:42:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_skeleton.cxx:46:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_skeleton.cxx:51:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_skeleton.cxx:52:24: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_skeleton.cxx:52:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_skeleton.cxx:54:21: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_skeleton.cxx:54:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_skeleton.cxx:57:26: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step0.cxx` ```text Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step0.cxx:34:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step0.cxx:34:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step0.cxx:39:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step0.cxx:44:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step0.cxx:47:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step0.cxx:53:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step0.cxx:63:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step0.cxx:64:24: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step0.cxx:64:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step0.cxx:66:21: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step0.cxx:66:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step0.cxx:70:26: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step1.cxx` ```text Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step1.cxx:36:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step1.cxx:36:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step1.cxx:41:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step1.cxx:60:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step1.cxx:63:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step1.cxx:69:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step1.cxx:88:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step1.cxx:89:24: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step1.cxx:89:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step1.cxx:99:21: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step1.cxx:99:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step1.cxx:103:26: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step1.cxx:115:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step1.cxx:115:61: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step1.cxx:130:57: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step2.cxx` ```text Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step2.cxx:39:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step2.cxx:39:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step2.cxx:44:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step2.cxx:68:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step2.cxx:71:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step2.cxx:77:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step2.cxx:96:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step2.cxx:97:24: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step2.cxx:97:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step2.cxx:108:26: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step2.cxx:110:21: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step2.cxx:115:26: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step2.cxx:131:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step2.cxx:131:61: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step2.cxx:142:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step2.cxx:165:59: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step3.cxx` ```text Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step3.cxx:41:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step3.cxx:41:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step3.cxx:46:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step3.cxx:75:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step3.cxx:78:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step3.cxx:84:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step3.cxx:105:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step3.cxx:106:24: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step3.cxx:106:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step3.cxx:117:26: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step3.cxx:119:21: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step3.cxx:124:26: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step3.cxx:140:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step3.cxx:140:61: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step3.cxx:151:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step3.cxx:224:59: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx` ```text Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:43:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:43:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:49:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:78:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:81:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:88:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:122:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:123:24: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:123:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:124:53: warning: no header providing "o2::aod::mccollision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:135:26: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:137:26: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:143:26: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:159:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:159:61: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:170:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:244:59: warning: no header providing "o2::constants::physics::MassXiMinus" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:262:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:262:45: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:288:32: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Derived/Analysis/strangeness_derived_step4.cxx:305:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Strangeness/Original/strangeness_skeleton.cxx` ```text Tutorials/PWGLF/Strangeness/Original/strangeness_skeleton.cxx:16:1: warning: included header LFStrangenessTables.h is not used directly [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_skeleton.cxx:29:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_skeleton.cxx:29:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_skeleton.cxx:32:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_skeleton.cxx:37:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_skeleton.cxx:40:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_skeleton.cxx:44:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_skeleton.cxx:49:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_skeleton.cxx:50:24: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_skeleton.cxx:50:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_skeleton.cxx:52:21: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_skeleton.cxx:52:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_skeleton.cxx:52:45: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_skeleton.cxx:55:26: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Strangeness/Original/strangeness_step0.cxx` ```text Tutorials/PWGLF/Strangeness/Original/strangeness_step0.cxx:32:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step0.cxx:32:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step0.cxx:36:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step0.cxx:41:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step0.cxx:44:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step0.cxx:49:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step0.cxx:57:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step0.cxx:58:24: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step0.cxx:58:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step0.cxx:60:21: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step0.cxx:60:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step0.cxx:60:45: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step0.cxx:64:26: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Strangeness/Original/strangeness_step1.cxx` ```text Tutorials/PWGLF/Strangeness/Original/strangeness_step1.cxx:34:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step1.cxx:34:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step1.cxx:38:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step1.cxx:50:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step1.cxx:53:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step1.cxx:58:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step1.cxx:72:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step1.cxx:73:24: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step1.cxx:73:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step1.cxx:81:21: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step1.cxx:81:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step1.cxx:81:45: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step1.cxx:85:26: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Strangeness/Original/strangeness_step2.cxx` ```text Tutorials/PWGLF/Strangeness/Original/strangeness_step2.cxx:36:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step2.cxx:36:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step2.cxx:40:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step2.cxx:55:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step2.cxx:58:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step2.cxx:64:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step2.cxx:80:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step2.cxx:81:24: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step2.cxx:81:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step2.cxx:90:31: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step2.cxx:90:41: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step2.cxx:90:56: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step2.cxx:90:74: warning: no header providing "o2::aod::pidTPCPi" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step2.cxx:92:21: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step2.cxx:92:45: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step2.cxx:97:26: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step2.cxx:112:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx` ```text Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:38:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:38:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:43:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:58:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:61:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:67:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:92:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:93:24: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:93:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:94:53: warning: no header providing "o2::aod::mccollision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:103:31: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:103:41: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:103:56: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:103:74: warning: no header providing "o2::aod::pidTPCPi" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:103:89: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:105:26: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:105:50: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:108:26: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:111:26: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:126:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:148:38: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:164:40: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:165:32: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:165:84: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step3.cxx:178:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx` ```text Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:40:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:40:59: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:46:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:73:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:76:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:83:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:118:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:119:24: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:119:49: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:120:53: warning: no header providing "o2::aod::mccollision::posZ" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:137:31: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:137:41: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:137:56: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:137:74: warning: no header providing "o2::aod::pidTPCPi" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:137:89: warning: no header providing "o2::aod::pidTPCPr" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:137:104: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:139:26: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:139:50: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:143:26: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:146:26: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:161:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:183:38: warning: no header providing "PDG_t" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:209:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:209:61: warning: no header providing "o2::constants::physics::MassLambda" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:242:18: warning: no header providing "std::abs" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:249:40: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:250:32: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:250:84: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] Tutorials/PWGLF/Strangeness/Original/strangeness_step4.cxx:266:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGLF/Utils/collisionCutsTutorial.cxx` ```text Tutorials/PWGLF/Utils/collisionCutsTutorial.cxx:36:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGLF/Utils/collisionCutsTutorial.cxx:42:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGLF/Utils/collisionCutsTutorial.cxx:42:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGLF/Utils/collisionCutsTutorial.cxx:44:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGLF/Utils/collisionCutsTutorial.cxx:74:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGLF/Utils/collisionCutsTutorial.cxx:74:31: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGMM/myExampleTask.cxx` ```text Tutorials/PWGMM/myExampleTask.cxx:24:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGMM/myExampleTask.cxx:24:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGMM/myExampleTask.cxx:26:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGMM/myExampleTask.cxx:29:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGMM/myExampleTask.cxx:32:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/PWGMM/myExampleTask.cxx:35:21: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] Tutorials/PWGMM/myExampleTask.cxx:38:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGUD/UDTutorial_01.cxx` ```text Tutorials/PWGUD/UDTutorial_01.cxx:16:1: warning: included header UDHelpers.h is not used directly [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_01.cxx:19:1: warning: included header PIDResponseTOF.h is not used directly [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_01.cxx:33:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_01.cxx:34:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_01.cxx:40:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_01.cxx:44:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_01.cxx:47:83: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_01.cxx:52:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_01.cxx:78:33: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_01.cxx:89:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_01.cxx:89:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_01.cxx:91:5: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_01.cxx:96:58: warning: no header providing "o2::constants::lhc::LHCMaxBunches" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_01.cxx:113:20: warning: no header providing "TH2" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_01.cxx:135:61: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGUD/UDTutorial_02a.cxx` ```text Tutorials/PWGUD/UDTutorial_02a.cxx:32:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02a.cxx:33:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02a.cxx:42:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02a.cxx:46:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02a.cxx:51:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02a.cxx:53:119: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02a.cxx:71:33: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02a.cxx:79:5: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02a.cxx:109:11: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02a.cxx:136:5: warning: no header providing "TParticlePDG" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02a.cxx:156:18: warning: no header providing "TH2" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02a.cxx:156:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02a.cxx:161:18: warning: no header providing "sqrt" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02a.cxx:161:23: warning: no header providing "pow" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGUD/UDTutorial_02b.cxx` ```text Tutorials/PWGUD/UDTutorial_02b.cxx:30:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02b.cxx:31:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02b.cxx:44:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02b.cxx:48:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02b.cxx:58:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02b.cxx:60:119: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02b.cxx:78:33: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02b.cxx:80:92: warning: no header providing "o2::aod::TracksDCA" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02b.cxx:86:5: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02b.cxx:97:14: warning: no header providing "std::find" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02b.cxx:117:11: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02b.cxx:142:20: warning: no header providing "TH2" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02b.cxx:142:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02b.cxx:148:20: warning: no header providing "sqrt" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_02b.cxx:148:25: warning: no header providing "pow" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGUD/UDTutorial_03a.cxx` ```text Tutorials/PWGUD/UDTutorial_03a.cxx:33:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:39:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:42:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:47:20: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:47:30: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:47:60: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:49:30: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:49:43: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:49:127: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:52:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:59:69: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:79:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:79:17: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:79:68: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:85:5: warning: no header providing "TParticlePDG" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:95:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tutorials/PWGUD/UDTutorial_03a.cxx:95:9: warning: no header providing "abs" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:103:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:103:15: warning: no header providing "int64_t" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:208:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tutorials/PWGUD/UDTutorial_03a.cxx:213:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tutorials/PWGUD/UDTutorial_03a.cxx:218:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tutorials/PWGUD/UDTutorial_03a.cxx:273:28: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:287:20: warning: no header providing "TH1" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:287:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:313:20: warning: no header providing "TH2" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03a.cxx:331:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGUD/UDTutorial_03b.cxx` ```text Tutorials/PWGUD/UDTutorial_03b.cxx:33:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:39:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:42:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:47:20: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:47:30: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:47:60: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:49:30: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:49:43: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:49:127: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:52:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:59:69: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:89:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:89:17: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:89:68: warning: no header providing "o2::aod::mcparticle::mcCollisionId" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:90:3: warning: no header providing "o2::framework::PresliceUnsorted" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:90:68: warning: no header providing "o2::aod::mccollisionlabel::mcCollisionId" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:91:65: warning: no header providing "o2::aod::mctracklabel::mcParticleId" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:97:5: warning: no header providing "TParticlePDG" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:107:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tutorials/PWGUD/UDTutorial_03b.cxx:107:9: warning: no header providing "abs" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:115:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:115:15: warning: no header providing "int64_t" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:237:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tutorials/PWGUD/UDTutorial_03b.cxx:242:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tutorials/PWGUD/UDTutorial_03b.cxx:247:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tutorials/PWGUD/UDTutorial_03b.cxx:301:28: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:318:20: warning: no header providing "TH1" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:318:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:349:20: warning: no header providing "TH2" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_03b.cxx:417:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGUD/UDTutorial_04.cxx` ```text Tutorials/PWGUD/UDTutorial_04.cxx:29:3: warning: no header providing "o2::framework::SliceCache" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_04.cxx:35:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_04.cxx:38:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_04.cxx:43:20: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_04.cxx:48:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_04.cxx:55:69: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_04.cxx:85:3: warning: no header providing "o2::framework::PresliceUnsorted" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_04.cxx:93:5: warning: no header providing "TParticlePDG" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_04.cxx:103:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tutorials/PWGUD/UDTutorial_04.cxx:103:9: warning: no header providing "abs" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_04.cxx:111:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_04.cxx:111:15: warning: no header providing "int64_t" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_04.cxx:233:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tutorials/PWGUD/UDTutorial_04.cxx:238:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tutorials/PWGUD/UDTutorial_04.cxx:243:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tutorials/PWGUD/UDTutorial_04.cxx:314:20: warning: no header providing "TH1" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_04.cxx:314:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_04.cxx:348:20: warning: no header providing "TH2" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_04.cxx:416:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_04.cxx:423:5: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGUD/UDTutorial_05.cxx` ```text Tutorials/PWGUD/UDTutorial_05.cxx:13:1: warning: included header iostream is not used directly [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_05.cxx:15:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_05.cxx:39:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_05.cxx:66:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_05.cxx:66:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_05.cxx:69:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_05.cxx:72:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_05.cxx:76:43: warning: no header providing "TH1" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_05.cxx:76:99: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_05.cxx:78:5: warning: no header providing "TString" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_05.cxx:88:48: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_05.cxx:116:58: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_05.cxx:120:84: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_05.cxx:134:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_05.cxx:148:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_05.cxx:182:67: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_05.cxx:187:13: warning: no header providing "fabs" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGUD/UDTutorial_06.cxx` ```text Tutorials/PWGUD/UDTutorial_06.cxx:23:1: warning: included header UDHelpers.h is not used directly [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:24:1: warning: included header BasicCCDBManager.h is not used directly [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:25:1: warning: included header GRPLHCIFData.h is not used directly [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:26:1: warning: included header GRPECSObject.h is not used directly [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:29:1: warning: included header TSystem.h is not used directly [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:30:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:43:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:43:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:44:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:50:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:53:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:62:43: warning: no header providing "TH1" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:62:99: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:63:5: warning: no header providing "TString" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:69:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:70:57: warning: no header providing "o2::framework::kTH1D" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:97:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:107:16: warning: no header providing "std::abs" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:143:70: warning: no header providing "o2::constants::physics::MassMuon" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:196:28: warning: no header providing "std::unordered_map" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:196:42: warning: no header providing "int32_t" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_06.cxx:196:56: warning: no header providing "std::vector" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGUD/UDTutorial_07.cxx` ```text Tutorials/PWGUD/UDTutorial_07.cxx:12:1: warning: included header iostream is not used directly [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_07.cxx:39:43: warning: no header providing "std::vector" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_07.cxx:69:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_07.cxx:71:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_07.cxx:98:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_07.cxx:98:46: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_07.cxx:101:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_07.cxx:104:50: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_07.cxx:108:99: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_07.cxx:126:19: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_07.cxx:175:67: warning: no header providing "o2::constants::physics::MassPionCharged" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_07.cxx:180:13: warning: no header providing "std::fabs" is directly included [misc-include-cleaner] ``` #### `Tutorials/PWGUD/UDTutorial_08.cxx` ```text Tutorials/PWGUD/UDTutorial_08.cxx:25:62: warning: no header providing "o2::aod::EvSels" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_08.cxx:27:52: warning: no header providing "o2::aod::BcSels" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_08.cxx:32:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_08.cxx:32:13: warning: no header providing "TH1I" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_08.cxx:34:13: warning: no header providing "TH1F" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_08.cxx:41:3: warning: no header providing "SGCutParHolder" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_08.cxx:43:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/PWGUD/UDTutorial_08.cxx:67:31: warning: no header providing "udhelpers::compatibleBCs" is directly included [misc-include-cleaner] ``` #### `Tutorials/Skimming/DataModel/JEDerived.h` ```text Tutorials/Skimming/DataModel/JEDerived.h:29:74: error: use of undeclared identifier 'TMath' [clang-diagnostic-error] Tutorials/Skimming/DataModel/JEDerived.h:30:74: error: use of undeclared identifier 'TMath' [clang-diagnostic-error] Tutorials/Skimming/DataModel/JEDerived.h:31:74: error: use of undeclared identifier 'TMath' [clang-diagnostic-error] Tutorials/Skimming/DataModel/JEDerived.h:32:72: error: use of undeclared identifier 'TMath' [clang-diagnostic-error] Tutorials/Skimming/DataModel/JEDerived.h:56:74: error: use of undeclared identifier 'TMath' [clang-diagnostic-error] Tutorials/Skimming/DataModel/JEDerived.h:57:74: error: use of undeclared identifier 'TMath' [clang-diagnostic-error] Tutorials/Skimming/DataModel/JEDerived.h:58:74: error: use of undeclared identifier 'TMath' [clang-diagnostic-error] Tutorials/Skimming/DataModel/JEDerived.h:59:72: error: use of undeclared identifier 'TMath' [clang-diagnostic-error] ``` #### `Tutorials/Skimming/DataModel/LFDerived.h` ```text Tutorials/Skimming/DataModel/LFDerived.h:16:1: warning: included header PIDResponseTOF.h is not used directly [misc-include-cleaner] Tutorials/Skimming/DataModel/LFDerived.h:17:1: warning: included header PIDResponseTPC.h is not used directly [misc-include-cleaner] Tutorials/Skimming/DataModel/LFDerived.h:34:79: warning: no header providing "TMath::CosH" is directly included [misc-include-cleaner] ``` #### `Tutorials/Skimming/derivedBasicConsumer.cxx` ```text Tutorials/Skimming/derivedBasicConsumer.cxx:14:1: warning: included header Track.h is not used directly [misc-include-cleaner] Tutorials/Skimming/derivedBasicConsumer.cxx:16:1: warning: included header AnalysisDataModel.h is not used directly [misc-include-cleaner] Tutorials/Skimming/derivedBasicConsumer.cxx:17:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/Skimming/derivedBasicConsumer.cxx:18:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] Tutorials/Skimming/derivedBasicConsumer.cxx:31:3: warning: no header providing "Double_t" is directly included [misc-include-cleaner] Tutorials/Skimming/derivedBasicConsumer.cxx:34:28: warning: no header providing "TMath::Pi" is directly included [misc-include-cleaner] Tutorials/Skimming/derivedBasicConsumer.cxx:44:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/Skimming/derivedBasicConsumer.cxx:44:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/Skimming/derivedBasicConsumer.cxx:46:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/Skimming/derivedBasicConsumer.cxx:49:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/Skimming/derivedBasicConsumer.cxx:50:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/Skimming/derivedBasicConsumer.cxx:55:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `Tutorials/Skimming/derivedBasicProvider.cxx` ```text Tutorials/Skimming/derivedBasicProvider.cxx:13:1: warning: included header Track.h is not used directly [misc-include-cleaner] Tutorials/Skimming/derivedBasicProvider.cxx:16:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/Skimming/derivedBasicProvider.cxx:28:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/Skimming/derivedBasicProvider.cxx:28:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/Skimming/derivedBasicProvider.cxx:29:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/Skimming/derivedBasicProvider.cxx:37:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] Tutorials/Skimming/derivedBasicProvider.cxx:47:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/Skimming/derivedBasicProvider.cxx:50:11: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/Skimming/derivedBasicProvider.cxx:52:48: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/Skimming/derivedBasicProvider.cxx:58:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/Skimming/derivedBasicProvider.cxx:73:18: warning: no header providing "TH1" is directly included [misc-include-cleaner] ``` #### `Tutorials/Skimming/jetProvider.cxx` ```text Tutorials/Skimming/jetProvider.cxx:14:1: warning: included header Track.h is not used directly [misc-include-cleaner] Tutorials/Skimming/jetProvider.cxx:17:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/Skimming/jetProvider.cxx:18:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] Tutorials/Skimming/jetProvider.cxx:21:1: warning: included header JetFinder.h is not used directly [misc-include-cleaner] Tutorials/Skimming/jetProvider.cxx:31:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] Tutorials/Skimming/jetProvider.cxx:34:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] ``` #### `Tutorials/Skimming/jetSpectraAnalyser.cxx` ```text Tutorials/Skimming/jetSpectraAnalyser.cxx:17:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] Tutorials/Skimming/jetSpectraAnalyser.cxx:18:1: warning: included header TTree.h is not used directly [misc-include-cleaner] Tutorials/Skimming/jetSpectraAnalyser.cxx:26:1: warning: included header Jet.h is not used directly [misc-include-cleaner] Tutorials/Skimming/jetSpectraAnalyser.cxx:27:1: warning: included header JetFinder.h is not used directly [misc-include-cleaner] Tutorials/Skimming/jetSpectraAnalyser.cxx:38:64: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] ``` #### `Tutorials/Skimming/jetSpectraReference.cxx` ```text Tutorials/Skimming/jetSpectraReference.cxx:17:1: warning: included header TH1F.h is not used directly [misc-include-cleaner] Tutorials/Skimming/jetSpectraReference.cxx:18:1: warning: included header TTree.h is not used directly [misc-include-cleaner] Tutorials/Skimming/jetSpectraReference.cxx:27:1: warning: included header JetFinder.h is not used directly [misc-include-cleaner] Tutorials/Skimming/jetSpectraReference.cxx:37:64: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] ``` #### `Tutorials/Skimming/spectraNucleiAnalyser.cxx` ```text Tutorials/Skimming/spectraNucleiAnalyser.cxx:15:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraNucleiAnalyser.cxx:17:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraNucleiAnalyser.cxx:22:1: warning: included header Track.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraNucleiAnalyser.cxx:34:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraNucleiAnalyser.cxx:41:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraNucleiAnalyser.cxx:43:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraNucleiAnalyser.cxx:45:54: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraNucleiAnalyser.cxx:55:94: warning: no header providing "o2::constants::physics::MassHelium3" is directly included [misc-include-cleaner] ``` #### `Tutorials/Skimming/spectraNucleiProvider.cxx` ```text Tutorials/Skimming/spectraNucleiProvider.cxx:21:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraNucleiProvider.cxx:24:1: warning: included header Utils.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraNucleiProvider.cxx:25:1: warning: included header Track.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraNucleiProvider.cxx:38:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraNucleiProvider.cxx:41:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraNucleiProvider.cxx:62:30: warning: no header providing "kINT7" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraNucleiProvider.cxx:70:94: warning: no header providing "o2::constants::physics::MassHelium3" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraNucleiProvider.cxx:81:7: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraNucleiProvider.cxx:86:22: warning: no header providing "o2::math_utils::detail::truncateFloatFraction" is directly included [misc-include-cleaner] ``` #### `Tutorials/Skimming/spectraNucleiReference.cxx` ```text Tutorials/Skimming/spectraNucleiReference.cxx:18:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraNucleiReference.cxx:23:1: warning: included header Track.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraNucleiReference.cxx:35:44: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraNucleiReference.cxx:37:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraNucleiReference.cxx:39:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraNucleiReference.cxx:42:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraNucleiReference.cxx:45:54: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraNucleiReference.cxx:52:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraNucleiReference.cxx:71:22: warning: no header providing "kFALSE" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraNucleiReference.cxx:72:30: warning: no header providing "kINT7" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraNucleiReference.cxx:84:94: warning: no header providing "o2::constants::physics::MassHelium3" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraNucleiReference.cxx:97:21: warning: no header providing "kTRUE" is directly included [misc-include-cleaner] ``` #### `Tutorials/Skimming/spectraTPCAnalyser.cxx` ```text Tutorials/Skimming/spectraTPCAnalyser.cxx:15:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraTPCAnalyser.cxx:17:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraTPCAnalyser.cxx:20:1: warning: included header Track.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraTPCAnalyser.cxx:26:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCAnalyser.cxx:29:24: warning: no header providing "o2::framework::VariantType" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCAnalyser.cxx:30:8: warning: no header providing "std::swap" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCAnalyser.cxx:39:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCAnalyser.cxx:41:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCAnalyser.cxx:41:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCAnalyser.cxx:43:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCAnalyser.cxx:45:66: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCAnalyser.cxx:48:24: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tutorials/Skimming/spectraTPCAnalyser.cxx:48:32: warning: no header providing "Form" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCAnalyser.cxx:49:25: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tutorials/Skimming/spectraTPCAnalyser.cxx:53:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCAnalyser.cxx:57:18: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCAnalyser.cxx:60:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tutorials/Skimming/spectraTPCAnalyser.cxx:60:9: warning: no header providing "abs" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCAnalyser.cxx:63:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `Tutorials/Skimming/spectraTPCProvider.cxx` ```text Tutorials/Skimming/spectraTPCProvider.cxx:20:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraTPCProvider.cxx:23:1: warning: included header Utils.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraTPCProvider.cxx:24:1: warning: included header Track.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraTPCProvider.cxx:36:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCProvider.cxx:40:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCProvider.cxx:67:5: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCProvider.cxx:101:30: warning: no header providing "kINT7" is directly included [misc-include-cleaner] ``` #### `Tutorials/Skimming/spectraTPCReference.cxx` ```text Tutorials/Skimming/spectraTPCReference.cxx:16:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraTPCReference.cxx:19:1: warning: included header Track.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraTPCReference.cxx:25:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCReference.cxx:28:24: warning: no header providing "o2::framework::VariantType" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCReference.cxx:29:8: warning: no header providing "std::swap" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCReference.cxx:37:25: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCReference.cxx:39:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCReference.cxx:39:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCReference.cxx:41:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCReference.cxx:43:66: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCReference.cxx:46:24: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tutorials/Skimming/spectraTPCReference.cxx:46:32: warning: no header providing "Form" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCReference.cxx:47:25: warning: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage] Tutorials/Skimming/spectraTPCReference.cxx:52:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCReference.cxx:60:18: warning: no header providing "std::size_t" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCReference.cxx:63:9: warning: using integer absolute value function 'abs' when argument is of floating point type [clang-diagnostic-absolute-value] Tutorials/Skimming/spectraTPCReference.cxx:63:9: warning: no header providing "abs" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraTPCReference.cxx:66:17: warning: no header providing "HIST" is directly included [misc-include-cleaner] ``` #### `Tutorials/Skimming/spectraUPCAnalyser.cxx` ```text Tutorials/Skimming/spectraUPCAnalyser.cxx:15:1: warning: included header TrackSelectionTables.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraUPCAnalyser.cxx:17:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraUPCAnalyser.cxx:18:1: warning: included header AnalysisDataModel.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraUPCAnalyser.cxx:21:1: warning: included header Track.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraUPCAnalyser.cxx:33:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCAnalyser.cxx:35:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCAnalyser.cxx:37:44: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCAnalyser.cxx:44:37: warning: no header providing "TMath::Cos" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCAnalyser.cxx:44:77: warning: no header providing "TMath::Sin" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCAnalyser.cxx:44:117: warning: no header providing "TMath::SinH" is directly included [misc-include-cleaner] ``` #### `Tutorials/Skimming/spectraUPCProvider.cxx` ```text Tutorials/Skimming/spectraUPCProvider.cxx:18:1: warning: included header ASoAHelpers.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraUPCProvider.cxx:22:1: warning: included header Track.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraUPCProvider.cxx:24:1: warning: included header TH1D.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraUPCProvider.cxx:33:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCProvider.cxx:39:38: warning: no header providing "o2::aod::evsel::kIsBBV0A" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCProvider.cxx:39:69: warning: no header providing "o2::aod::evsel::kIsBBV0C" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCProvider.cxx:39:101: warning: no header providing "o2::aod::evsel::kNoBGV0A" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCProvider.cxx:39:133: warning: no header providing "o2::aod::evsel::kNoBGV0C" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCProvider.cxx:43:39: warning: no header providing "o2::aod::evsel::kIsBBFDA" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCProvider.cxx:43:70: warning: no header providing "o2::aod::evsel::kIsBBFDC" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCProvider.cxx:43:102: warning: no header providing "o2::aod::evsel::kNoBGFDA" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCProvider.cxx:43:134: warning: no header providing "o2::aod::evsel::kNoBGFDC" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCProvider.cxx:47:24: warning: no header providing "kCUP9" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCProvider.cxx:58:5: warning: no header providing "UChar_t" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCProvider.cxx:60:25: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] ``` #### `Tutorials/Skimming/spectraUPCReference.cxx` ```text Tutorials/Skimming/spectraUPCReference.cxx:21:1: warning: included header TH1D.h is not used directly [misc-include-cleaner] Tutorials/Skimming/spectraUPCReference.cxx:31:42: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCReference.cxx:33:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCReference.cxx:35:44: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCReference.cxx:44:38: warning: no header providing "o2::aod::evsel::kIsBBV0A" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCReference.cxx:44:69: warning: no header providing "o2::aod::evsel::kIsBBV0C" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCReference.cxx:44:101: warning: no header providing "o2::aod::evsel::kNoBGV0A" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCReference.cxx:44:133: warning: no header providing "o2::aod::evsel::kNoBGV0C" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCReference.cxx:48:39: warning: no header providing "o2::aod::evsel::kIsBBFDA" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCReference.cxx:48:70: warning: no header providing "o2::aod::evsel::kIsBBFDC" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCReference.cxx:48:102: warning: no header providing "o2::aod::evsel::kNoBGFDA" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCReference.cxx:48:134: warning: no header providing "o2::aod::evsel::kNoBGFDC" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCReference.cxx:52:24: warning: no header providing "kCUP9" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCReference.cxx:63:5: warning: no header providing "UChar_t" is directly included [misc-include-cleaner] Tutorials/Skimming/spectraUPCReference.cxx:65:25: warning: no header providing "TESTBIT" is directly included [misc-include-cleaner] ``` #### `Tutorials/include/configurableCut.h` ```text Tutorials/include/configurableCut.h:18:1: warning: included header TMath.h is not used directly [misc-include-cleaner] Tutorials/include/configurableCut.h:26:24: warning: no header providing "std::vector" is directly included [misc-include-cleaner] Tutorials/include/configurableCut.h:27:36: warning: no header providing "std::string" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/ZDCVZeroIteration.cxx` ```text Tutorials/src/ZDCVZeroIteration.cxx:31:21: warning: no header providing "o2::aod::CollisionMatchedRun2Sparse" is directly included [misc-include-cleaner] Tutorials/src/ZDCVZeroIteration.cxx:31:78: warning: no header providing "o2::aod::FV0As" is directly included [misc-include-cleaner] Tutorials/src/ZDCVZeroIteration.cxx:51:21: warning: no header providing "o2::aod::Run2MatchedExclusive" is directly included [misc-include-cleaner] Tutorials/src/ZDCVZeroIteration.cxx:51:73: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/src/ZDCVZeroIteration.cxx:64:97: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/ZDCVZeroIteration.cxx:80:97: warning: no header providing "o2::aod::Zdcs" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/associatedExample.cxx` ```text Tutorials/src/associatedExample.cxx:23:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:28:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:33:32: warning: no header providing "int32_t" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:41:1: warning: no header providing "DECLARE_SOA_INDEX_COLUMN" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:45:1: warning: no header providing "DECLARE_SOA_INDEX_TABLE_USER" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:45:48: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:52:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:57:19: warning: no header providing "asin" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:57:74: warning: no header providing "M_PI" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:58:19: warning: no header providing "log" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:58:23: warning: no header providing "tan" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:58:69: warning: no header providing "atan" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:67:21: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:74:54: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:86:32: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:87:16: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:90:21: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:103:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:103:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:142:3: warning: no header providing "o2::framework::Builds" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:143:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/src/associatedExample.cxx:150:78: warning: no header providing "o2::aod::HMPIDs" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/ccdbaccess.cxx` ```text Tutorials/src/ccdbaccess.cxx:24:1: warning: included header InteractionRecord.h is not used directly [misc-include-cleaner] Tutorials/src/ccdbaccess.cxx:32:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] Tutorials/src/ccdbaccess.cxx:33:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] Tutorials/src/ccdbaccess.cxx:34:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/src/ccdbaccess.cxx:34:21: warning: no header providing "std::string" is directly included [misc-include-cleaner] Tutorials/src/ccdbaccess.cxx:38:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/src/ccdbaccess.cxx:49:21: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] Tutorials/src/ccdbaccess.cxx:49:65: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/src/ccdbaccess.cxx:59:38: warning: no header providing "TH2F" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/collisionTracksIteration.cxx` ```text Tutorials/src/collisionTracksIteration.cxx:25:21: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] Tutorials/src/collisionTracksIteration.cxx:25:54: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/collisionTracksIteration.cxx:40:21: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/src/collisionTracksIteration.cxx:50:81: warning: no header providing "o2::aod::V0s" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/compatibleBCs.cxx` ```text Tutorials/src/compatibleBCs.cxx:27:25: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] Tutorials/src/compatibleBCs.cxx:32:3: warning: no header providing "uint64_t" is directly included [misc-include-cleaner] Tutorials/src/compatibleBCs.cxx:33:43: warning: no header providing "std::lround" is directly included [misc-include-cleaner] Tutorials/src/compatibleBCs.cxx:34:22: warning: no header providing "std::ceil" is directly included [misc-include-cleaner] Tutorials/src/compatibleBCs.cxx:39:3: warning: no header providing "int64_t" is directly included [misc-include-cleaner] Tutorials/src/compatibleBCs.cxx:66:54: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] Tutorials/src/compatibleBCs.cxx:84:54: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/src/compatibleBCs.cxx:84:74: warning: no header providing "o2::aod::Run3MatchedToBCSparse" is directly included [misc-include-cleaner] Tutorials/src/compatibleBCs.cxx:84:116: warning: no header providing "o2::aod::FT0s" is directly included [misc-include-cleaner] Tutorials/src/compatibleBCs.cxx:84:137: warning: no header providing "o2::aod::FV0As" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/conditionalExpressions.cxx` ```text Tutorials/src/conditionalExpressions.cxx:22:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/src/conditionalExpressions.cxx:23:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/src/conditionalExpressions.cxx:23:24: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] Tutorials/src/conditionalExpressions.cxx:23:41: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] Tutorials/src/conditionalExpressions.cxx:23:68: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] Tutorials/src/conditionalExpressions.cxx:23:81: warning: no header providing "o2::framework::expressions::ifnode" is directly included [misc-include-cleaner] Tutorials/src/conditionalExpressions.cxx:23:126: warning: no header providing "o2::aod::track::flags" is directly included [misc-include-cleaner] Tutorials/src/conditionalExpressions.cxx:23:146: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] Tutorials/src/conditionalExpressions.cxx:23:172: warning: no header providing "o2::aod::track::ITSrefit" is directly included [misc-include-cleaner] Tutorials/src/conditionalExpressions.cxx:24:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] Tutorials/src/conditionalExpressions.cxx:24:13: warning: no header providing "TH2F" is directly included [misc-include-cleaner] Tutorials/src/conditionalExpressions.cxx:25:21: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] Tutorials/src/conditionalExpressions.cxx:25:44: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/src/conditionalExpressions.cxx:25:58: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/src/conditionalExpressions.cxx:25:68: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/conditionalExpressions.cxx:25:81: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/configurableCut.cxx` ```text Tutorials/src/configurableCut.cxx:56:36: warning: no header providing "std::vector" is directly included [misc-include-cleaner] Tutorials/src/configurableCut.cxx:58:15: warning: no header providing "std::move" is directly included [misc-include-cleaner] Tutorials/src/configurableCut.cxx:66:50: warning: no header providing "std::string" is directly included [misc-include-cleaner] Tutorials/src/configurableCut.cxx:68:17: warning: no header providing "std::move" is directly included [misc-include-cleaner] Tutorials/src/configurableCut.cxx:76:46: warning: no header providing "o2::framework::Array2D" is directly included [misc-include-cleaner] Tutorials/src/configurableCut.cxx:78:15: warning: no header providing "std::move" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/configurableObjects.cxx` ```text Tutorials/src/configurableObjects.cxx:28:22: warning: no header providing "std::vector" is directly included [misc-include-cleaner] Tutorials/src/configurableObjects.cxx:40:18: warning: no header providing "o2::framework::Array2D" is directly included [misc-include-cleaner] Tutorials/src/configurableObjects.cxx:58:8: warning: no header providing "o2::framework::LabeledArray" is directly included [misc-include-cleaner] Tutorials/src/configurableObjects.cxx:59:12: warning: no header providing "std::string" is directly included [misc-include-cleaner] Tutorials/src/configurableObjects.cxx:64:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/src/configurableObjects.cxx:69:3: warning: no header providing "o2::framework::MutableConfigurable" is directly included [misc-include-cleaner] Tutorials/src/configurableObjects.cxx:73:21: warning: no header providing "std::vector" is directly included [misc-include-cleaner] Tutorials/src/configurableObjects.cxx:76:16: warning: no header providing "o2::framework::Array2D" is directly included [misc-include-cleaner] Tutorials/src/configurableObjects.cxx:82:12: warning: no header providing "o2::framework::ConfigurableGroup" is directly included [misc-include-cleaner] Tutorials/src/configurableObjects.cxx:84:18: warning: no header providing "int16_t" is directly included [misc-include-cleaner] Tutorials/src/configurableObjects.cxx:87:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/src/configurableObjects.cxx:104:21: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] Tutorials/src/configurableObjects.cxx:104:44: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/configurableObjects.cxx:115:30: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/consume.cxx` ```text Tutorials/src/consume.cxx:24:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/src/consume.cxx:27:21: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] Tutorials/src/consume.cxx:27:44: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/src/consume.cxx:27:54: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/dynamicColumns.cxx` ```text Tutorials/src/dynamicColumns.cxx:23:1: warning: no header providing "DECLARE_SOA_DYNAMIC_COLUMN" is directly included [misc-include-cleaner] Tutorials/src/dynamicColumns.cxx:31:21: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] Tutorials/src/dynamicColumns.cxx:31:44: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/dynamicColumns.cxx:34:50: warning: no header providing "o2::soa::Attach" is directly included [misc-include-cleaner] Tutorials/src/dynamicColumns.cxx:34:101: warning: no header providing "o2::aod::track::P" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/efficiencyGlobal.cxx` ```text Tutorials/src/efficiencyGlobal.cxx:28:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] Tutorials/src/efficiencyGlobal.cxx:29:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] Tutorials/src/efficiencyGlobal.cxx:30:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/src/efficiencyGlobal.cxx:30:21: warning: no header providing "std::string" is directly included [misc-include-cleaner] Tutorials/src/efficiencyGlobal.cxx:34:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] Tutorials/src/efficiencyGlobal.cxx:34:13: warning: no header providing "TH1F" is directly included [misc-include-cleaner] Tutorials/src/efficiencyGlobal.cxx:39:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/src/efficiencyGlobal.cxx:55:21: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] Tutorials/src/efficiencyGlobal.cxx:55:58: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/efficiencyPerRun.cxx` ```text Tutorials/src/efficiencyPerRun.cxx:31:8: warning: constructor does not initialize these fields: ccdb [cppcoreguidelines-pro-type-member-init] Tutorials/src/efficiencyPerRun.cxx:32:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] Tutorials/src/efficiencyPerRun.cxx:33:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/src/efficiencyPerRun.cxx:33:21: warning: no header providing "std::string" is directly included [misc-include-cleaner] Tutorials/src/efficiencyPerRun.cxx:37:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] Tutorials/src/efficiencyPerRun.cxx:37:13: warning: no header providing "TH1F" is directly included [misc-include-cleaner] Tutorials/src/efficiencyPerRun.cxx:39:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/src/efficiencyPerRun.cxx:50:21: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] Tutorials/src/efficiencyPerRun.cxx:50:54: warning: no header providing "o2::aod::BCsWithTimestamps" is directly included [misc-include-cleaner] Tutorials/src/efficiencyPerRun.cxx:50:85: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/eventMixing.cxx` ```text Tutorials/src/eventMixing.cxx:44:29: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] Tutorials/src/eventMixing.cxx:46:23: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] Tutorials/src/eventMixing.cxx:48:3: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] Tutorials/src/eventMixing.cxx:220:3: warning: no header providing "o2::framework::Pair" is directly included [misc-include-cleaner] Tutorials/src/eventMixing.cxx:255:3: warning: no header providing "o2::framework::SameKindTriple" is directly included [misc-include-cleaner] Tutorials/src/eventMixing.cxx:289:3: warning: no header providing "o2::framework::Triple" is directly included [misc-include-cleaner] Tutorials/src/eventMixing.cxx:320:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] Tutorials/src/eventMixing.cxx:359:3: warning: no header providing "o2::framework::NoBinningPolicy" is directly included [misc-include-cleaner] Tutorials/src/eventMixing.cxx:391:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/src/eventMixing.cxx:405:7: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] Tutorials/src/eventMixing.cxx:435:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] Tutorials/src/eventMixing.cxx:448:25: warning: no header providing "o2::framework::FlexibleBinningPolicy" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/eventMixingValidation.cxx` ```text Tutorials/src/eventMixingValidation.cxx:23:1: warning: included header EventSelection.h is not used directly [misc-include-cleaner] Tutorials/src/eventMixingValidation.cxx:24:1: warning: included header Centrality.h is not used directly [misc-include-cleaner] Tutorials/src/eventMixingValidation.cxx:25:1: warning: included header Multiplicity.h is not used directly [misc-include-cleaner] Tutorials/src/eventMixingValidation.cxx:39:29: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] Tutorials/src/eventMixingValidation.cxx:41:23: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] Tutorials/src/eventMixingValidation.cxx:43:3: warning: no header providing "o2::framework::SameKindPair" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/extendedColumns.cxx` ```text Tutorials/src/extendedColumns.cxx:23:1: warning: no header providing "DECLARE_SOA_EXPRESSION_COLUMN" is directly included [misc-include-cleaner] Tutorials/src/extendedColumns.cxx:23:53: warning: no header providing "o2::aod::track::p" is directly included [misc-include-cleaner] Tutorials/src/extendedColumns.cxx:31:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] Tutorials/src/extendedColumns.cxx:31:17: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/extendedColumns.cxx:31:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] Tutorials/src/extendedColumns.cxx:33:21: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/src/extendedColumns.cxx:38:33: warning: no header providing "o2::soa::Extend" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/extendedTables.cxx` ```text Tutorials/src/extendedTables.cxx:23:1: warning: no header providing "DECLARE_SOA_EXPRESSION_COLUMN" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:23:59: warning: no header providing "o2::aod::track::p" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:24:1: warning: no header providing "DECLARE_SOA_CONFIGURABLE_EXPRESSION_COLUMN" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:26:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:29:1: warning: no header providing "DECLARE_SOA_DYNAMIC_COLUMN" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:33:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:38:1: warning: no header providing "DECLARE_SOA_EXTENDED_TABLE_USER" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:38:42: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:40:1: warning: no header providing "DECLARE_SOA_CONFIGURABLE_EXTENDED_TABLE" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:50:21: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:54:33: warning: no header providing "o2::soa::Extend" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:74:33: warning: no header providing "o2::soa::Attach" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:75:74: warning: no header providing "o2::aod::track::X" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:75:89: warning: no header providing "o2::aod::track::Y" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:94:32: warning: no header providing "o2::soa::Attach" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:95:73: warning: no header providing "o2::aod::track::P" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:111:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:112:3: warning: no header providing "o2::framework::Spawns" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:113:3: warning: no header providing "o2::framework::Defines" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:115:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:117:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/src/extendedTables.cxx:133:24: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/filters.cxx` ```text Tutorials/src/filters.cxx:27:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/src/filters.cxx:29:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/src/filters.cxx:29:34: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] Tutorials/src/filters.cxx:34:35: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] Tutorials/src/filters.cxx:40:23: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] Tutorials/src/filters.cxx:40:44: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/src/filters.cxx:41:39: warning: no header providing "o2::aod::track::flags" is directly included [misc-include-cleaner] Tutorials/src/filters.cxx:41:59: warning: no header providing "uint32_t" is directly included [misc-include-cleaner] Tutorials/src/filters.cxx:41:85: warning: no header providing "o2::aod::track::PVContributor" is directly included [misc-include-cleaner] Tutorials/src/filters.cxx:51:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/src/filters.cxx:55:16: warning: no header providing "o2::framework::expressions::Parser" is directly included [misc-include-cleaner] Tutorials/src/filters.cxx:60:21: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/src/filters.cxx:60:35: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/src/filters.cxx:60:94: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/src/filters.cxx:60:104: warning: no header providing "o2::aod::TracksIU" is directly included [misc-include-cleaner] Tutorials/src/filters.cxx:60:119: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/fullTrackIteration.cxx` ```text Tutorials/src/fullTrackIteration.cxx:23:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/src/fullTrackIteration.cxx:23:31: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/fullTrackIteration.cxx:23:44: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] Tutorials/src/fullTrackIteration.cxx:32:21: warning: no header providing "o2::aod::AmbiguousTracks" is directly included [misc-include-cleaner] Tutorials/src/fullTrackIteration.cxx:32:57: warning: no header providing "o2::aod::BCs" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/hepMC.cxx` ```text Tutorials/src/hepMC.cxx:24:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] Tutorials/src/hepMC.cxx:24:13: warning: no header providing "TH2F" is directly included [misc-include-cleaner] Tutorials/src/hepMC.cxx:28:29: warning: no header providing "o2::aod::HepMCXSection" is directly included [misc-include-cleaner] Tutorials/src/hepMC.cxx:34:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] Tutorials/src/hepMC.cxx:36:28: warning: no header providing "o2::aod::HepMCPdfInfo" is directly included [misc-include-cleaner] Tutorials/src/hepMC.cxx:44:29: warning: no header providing "o2::aod::HepMCHeavyIon" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/histogramRegistry.cxx` ```text Tutorials/src/histogramRegistry.cxx:31:24: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:32:60: warning: no header providing "M_PI" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:36:21: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:39:20: warning: no header providing "TH1" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:57:31: warning: no header providing "o2::aod::track::Eta" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:57:69: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:58:31: warning: no header providing "o2::aod::track::Pt" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:58:87: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:73:5: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:77:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:106:28: warning: no header providing "o2::aod::track::Phi" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:107:33: warning: no header providing "o2::aod::track::P" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:107:36: warning: no header providing "o2::aod::track::X" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:108:39: warning: no header providing "o2::aod::track::Y" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:108:42: warning: no header providing "o2::aod::track::Z" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:142:10: warning: no header providing "std::vector" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:146:5: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:155:39: warning: no header providing "o2::framework::kTH2F" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:156:17: warning: no header providing "TH2" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:165:17: warning: no header providing "THn" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:167:48: warning: no header providing "o2::framework::kTH1I" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:182:34: warning: no header providing "o2::framework::kTH1F" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:193:27: warning: no header providing "std::string_view" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:218:16: warning: no header providing "std::rand" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:218:26: warning: no header providing "RAND_MAX" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:242:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:242:13: warning: no header providing "TH1F" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:255:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:256:86: warning: no header providing "o2::framework::OutputObjSourceType" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:270:37: warning: no header providing "Int_t" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:286:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:286:47: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] Tutorials/src/histogramRegistry.cxx:303:21: warning: no header providing "o2::aod::Track" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/histogramTrackSelection.cxx` ```text Tutorials/src/histogramTrackSelection.cxx:23:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] Tutorials/src/histogramTrackSelection.cxx:32:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/src/histogramTrackSelection.cxx:34:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] Tutorials/src/histogramTrackSelection.cxx:34:13: warning: no header providing "TH1F" is directly included [misc-include-cleaner] Tutorials/src/histogramTrackSelection.cxx:36:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/src/histogramTrackSelection.cxx:39:21: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] Tutorials/src/histogramTrackSelection.cxx:40:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/src/histogramTrackSelection.cxx:40:31: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/histograms.cxx` ```text Tutorials/src/histograms.cxx:31:3: warning: no header providing "TH1F" is directly included [misc-include-cleaner] Tutorials/src/histograms.cxx:31:56: warning: no header providing "M_PI" is directly included [misc-include-cleaner] Tutorials/src/histograms.cxx:34:21: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/histograms.cxx:46:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] Tutorials/src/histograms.cxx:46:66: warning: no header providing "o2::framework::OutputObjHandlingPolicy" is directly included [misc-include-cleaner] Tutorials/src/histograms.cxx:47:13: warning: no header providing "TH2F" is directly included [misc-include-cleaner] Tutorials/src/histograms.cxx:62:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/src/histograms.cxx:83:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/src/histograms.cxx:85:24: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/src/histograms.cxx:91:20: warning: no header providing "TH1" is directly included [misc-include-cleaner] Tutorials/src/histograms.cxx:91:25: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/src/histograms.cxx:92:20: warning: no header providing "TH2" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/histogramsFullTracks.cxx` ```text Tutorials/src/histogramsFullTracks.cxx:18:1: warning: included header TH2F.h is not used directly [misc-include-cleaner] Tutorials/src/histogramsFullTracks.cxx:26:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] Tutorials/src/histogramsFullTracks.cxx:26:13: warning: no header providing "TH3F" is directly included [misc-include-cleaner] Tutorials/src/histogramsFullTracks.cxx:28:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/src/histogramsFullTracks.cxx:28:31: warning: no header providing "o2::aod::FullTracks" is directly included [misc-include-cleaner] Tutorials/src/histogramsFullTracks.cxx:28:48: warning: no header providing "o2::aod::TracksCov" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/jetAnalysis.cxx` ```text Tutorials/src/jetAnalysis.cxx:25:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] Tutorials/src/jetAnalysis.cxx:25:13: warning: no header providing "TH1F" is directly included [misc-include-cleaner] Tutorials/src/jetAnalysis.cxx:28:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/src/jetAnalysis.cxx:37:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/src/jetAnalysis.cxx:37:100: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/mcHistograms.cxx` ```text Tutorials/src/mcHistograms.cxx:20:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] Tutorials/src/mcHistograms.cxx:28:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] Tutorials/src/mcHistograms.cxx:28:13: warning: no header providing "TH1F" is directly included [misc-include-cleaner] Tutorials/src/mcHistograms.cxx:30:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/src/mcHistograms.cxx:33:21: warning: no header providing "o2::aod::McCollision" is directly included [misc-include-cleaner] Tutorials/src/mcHistograms.cxx:43:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] Tutorials/src/mcHistograms.cxx:45:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] Tutorials/src/mcHistograms.cxx:47:21: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] Tutorials/src/mcHistograms.cxx:116:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/src/mcHistograms.cxx:116:31: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/src/mcHistograms.cxx:116:48: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] Tutorials/src/mcHistograms.cxx:116:110: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/mcHistograms.cxx:116:123: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] Tutorials/src/mcHistograms.cxx:117:62: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] Tutorials/src/mcHistograms.cxx:164:3: warning: no header providing "o2::framework::Preslice" is directly included [misc-include-cleaner] Tutorials/src/mcHistograms.cxx:164:52: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] Tutorials/src/mcHistograms.cxx:166:58: warning: no header providing "o2::soa::SmallGroups" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/mcOnly.cxx` ```text Tutorials/src/mcOnly.cxx:19:1: warning: included header O2DatabasePDGPlugin.h is not used directly [misc-include-cleaner] Tutorials/src/mcOnly.cxx:20:1: warning: included header TDatabasePDG.h is not used directly [misc-include-cleaner] Tutorials/src/mcOnly.cxx:28:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] Tutorials/src/mcOnly.cxx:28:13: warning: no header providing "TH1F" is directly included [misc-include-cleaner] Tutorials/src/mcOnly.cxx:30:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/src/mcOnly.cxx:33:21: warning: no header providing "o2::aod::McCollision" is directly included [misc-include-cleaner] Tutorials/src/mcOnly.cxx:50:58: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/multiProcess.cxx` ```text Tutorials/src/multiProcess.cxx:31:11: warning: no header providing "M_PI" is directly included [misc-include-cleaner] Tutorials/src/multiProcess.cxx:43:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/src/multiProcess.cxx:45:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/src/multiProcess.cxx:49:45: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/src/multiProcess.cxx:64:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/src/multiProcess.cxx:64:23: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] Tutorials/src/multiProcess.cxx:64:44: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/src/multiProcess.cxx:65:46: warning: no header providing "o2::aod::mccollision::posZ" is directly included [misc-include-cleaner] Tutorials/src/multiProcess.cxx:67:24: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/src/multiProcess.cxx:67:38: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/src/multiProcess.cxx:67:73: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/multiProcess.cxx:70:21: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/src/multiProcess.cxx:77:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] Tutorials/src/multiProcess.cxx:79:38: warning: no header providing "o2::aod::McCollisions" is directly included [misc-include-cleaner] Tutorials/src/multiProcess.cxx:79:75: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] Tutorials/src/multiProcess.cxx:89:45: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/src/multiProcess.cxx:89:72: warning: no header providing "o2::aod::McCollisionLabels" is directly included [misc-include-cleaner] Tutorials/src/multiProcess.cxx:89:148: warning: no header providing "o2::aod::McTrackLabels" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/multiplicityEventTrackSelection.cxx` ```text Tutorials/src/multiplicityEventTrackSelection.cxx:32:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] Tutorials/src/multiplicityEventTrackSelection.cxx:32:13: warning: no header providing "TH1F" is directly included [misc-include-cleaner] Tutorials/src/multiplicityEventTrackSelection.cxx:34:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/src/multiplicityEventTrackSelection.cxx:34:29: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] Tutorials/src/multiplicityEventTrackSelection.cxx:34:50: warning: no header providing "o2::aod::collision::posZ" is directly included [misc-include-cleaner] Tutorials/src/multiplicityEventTrackSelection.cxx:35:42: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] Tutorials/src/multiplicityEventTrackSelection.cxx:35:71: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] Tutorials/src/multiplicityEventTrackSelection.cxx:37:21: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/src/multiplicityEventTrackSelection.cxx:37:35: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/src/multiplicityEventTrackSelection.cxx:37:45: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/src/multiplicityEventTrackSelection.cxx:38:45: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/multiplicityEventTrackSelection.cxx:40:30: warning: no header providing "kINT7" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/muonIteration.cxx` ```text Tutorials/src/muonIteration.cxx:29:21: warning: no header providing "o2::aod::MatchedBCCollisionsExclusive" is directly included [misc-include-cleaner] Tutorials/src/muonIteration.cxx:29:75: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/src/muonIteration.cxx:29:99: warning: no header providing "o2::aod::FwdTracks" is directly included [misc-include-cleaner] Tutorials/src/muonIteration.cxx:52:21: warning: no header providing "o2::aod::MatchedBCCollisionsSparse" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/newCollections.cxx` ```text Tutorials/src/newCollections.cxx:25:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] Tutorials/src/newCollections.cxx:28:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] Tutorials/src/newCollections.cxx:37:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] Tutorials/src/newCollections.cxx:39:21: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/newCollections.cxx:42:19: warning: no header providing "asin" is directly included [misc-include-cleaner] Tutorials/src/newCollections.cxx:42:74: warning: no header providing "M_PI" is directly included [misc-include-cleaner] Tutorials/src/newCollections.cxx:43:19: warning: no header providing "log" is directly included [misc-include-cleaner] Tutorials/src/newCollections.cxx:43:23: warning: no header providing "tan" is directly included [misc-include-cleaner] Tutorials/src/newCollections.cxx:43:69: warning: no header providing "atan" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/partitions.cxx` ```text Tutorials/src/partitions.cxx:24:34: warning: no header providing "M_PI" is directly included [misc-include-cleaner] Tutorials/src/partitions.cxx:25:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/src/partitions.cxx:27:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/src/partitions.cxx:27:35: warning: no header providing "o2::aod::track::pt" is directly included [misc-include-cleaner] Tutorials/src/partitions.cxx:32:35: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] Tutorials/src/partitions.cxx:38:25: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/src/partitions.cxx:38:39: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/partitions.cxx:41:3: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] Tutorials/src/partitions.cxx:41:45: warning: no header providing "o2::aod::track::phi" is directly included [misc-include-cleaner] Tutorials/src/partitions.cxx:46:21: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] Tutorials/src/partitions.cxx:71:21: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/src/partitions.cxx:76:58: warning: no header providing "o2::aod::track::collisionId" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/pidTpcTof.cxx` ```text Tutorials/src/pidTpcTof.cxx:35:28: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/src/pidTpcTof.cxx:39:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/src/pidTpcTof.cxx:39:31: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/pidTpcTof.cxx:39:44: warning: no header providing "o2::aod::TracksExtra" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/preprocess.cxx` ```text Tutorials/src/preprocess.cxx:28:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] Tutorials/src/preprocess.cxx:30:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/src/preprocess.cxx:33:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/src/preprocess.cxx:36:26: warning: no header providing "std::find_if" is directly included [misc-include-cleaner] Tutorials/src/preprocess.cxx:38:26: warning: no header providing "std::find_if" is directly included [misc-include-cleaner] Tutorials/src/preprocess.cxx:40:30: warning: no header providing "std::find_if" is directly included [misc-include-cleaner] Tutorials/src/preprocess.cxx:46:31: warning: no header providing "std::find_if" is directly included [misc-include-cleaner] Tutorials/src/preprocess.cxx:56:21: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/preprocess.cxx:59:45: warning: no header providing "std::abs" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/propagatedTracks.cxx` ```text Tutorials/src/propagatedTracks.cxx:20:1: warning: included header RunningWorkflowInfo.h is not used directly [misc-include-cleaner] Tutorials/src/propagatedTracks.cxx:21:1: warning: included header TrackSelection.h is not used directly [misc-include-cleaner] Tutorials/src/propagatedTracks.cxx:23:1: warning: included header trackUtilities.h is not used directly [misc-include-cleaner] Tutorials/src/propagatedTracks.cxx:24:1: warning: included header DCA.h is not used directly [misc-include-cleaner] Tutorials/src/propagatedTracks.cxx:25:1: warning: included header Propagator.h is not used directly [misc-include-cleaner] Tutorials/src/propagatedTracks.cxx:26:1: warning: included header NameConf.h is not used directly [misc-include-cleaner] Tutorials/src/propagatedTracks.cxx:40:56: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/src/propagatedTracks.cxx:42:82: warning: no header providing "o2::constants::math::TwoPI" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/reweighting.cxx` ```text Tutorials/src/reweighting.cxx:42:1: warning: no header providing "o2::framework::AxisSpec" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:51:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:53:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:62:6: warning: no header providing "std::array" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:70:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:75:16: warning: no header providing "ORT_LOGGING_LEVEL_WARNING" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:76:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:78:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:78:26: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:78:43: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:81:8: warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:85:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:87:27: warning: no header providing "int64_t" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:89:13: warning: no header providing "o2::framework::InitContext" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:93:24: warning: no header providing "std::make_shared" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:95:10: warning: no header providing "size_t" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:104:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:104:31: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:104:88: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:104:102: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:110:34: warning: no header providing "OrtAllocatorType" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:110:71: warning: no header providing "OrtMemType" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:138:3: warning: no header providing "o2::framework::HistogramRegistry" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:141:46: warning: no header providing "o2::framework::HistType" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:166:23: warning: no header providing "HIST" is directly included [misc-include-cleaner] Tutorials/src/reweighting.cxx:178:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/schemaEvolution.cxx` ```text Tutorials/src/schemaEvolution.cxx:26:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] Tutorials/src/schemaEvolution.cxx:30:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] Tutorials/src/schemaEvolution.cxx:39:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] Tutorials/src/schemaEvolution.cxx:41:21: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/schemaEvolution.cxx:44:19: warning: no header providing "asin" is directly included [misc-include-cleaner] Tutorials/src/schemaEvolution.cxx:44:74: warning: no header providing "M_PI" is directly included [misc-include-cleaner] Tutorials/src/schemaEvolution.cxx:45:19: warning: no header providing "log" is directly included [misc-include-cleaner] Tutorials/src/schemaEvolution.cxx:45:23: warning: no header providing "tan" is directly included [misc-include-cleaner] Tutorials/src/schemaEvolution.cxx:45:69: warning: no header providing "atan" is directly included [misc-include-cleaner] Tutorials/src/schemaEvolution.cxx:62:24: warning: no header providing "std::abs" is directly included [misc-include-cleaner] Tutorials/src/schemaEvolution.cxx:73:32: warning: no header providing "std::is_same" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/tableIOin.cxx` ```text Tutorials/src/tableIOin.cxx:23:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] Tutorials/src/tableIOin.cxx:29:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/tableIOout.cxx` ```text Tutorials/src/tableIOout.cxx:24:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] Tutorials/src/tableIOout.cxx:30:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] Tutorials/src/tableIOout.cxx:41:8: warning: constructor does not initialize these fields: minpt, maxpt [cppcoreguidelines-pro-type-member-init] Tutorials/src/tableIOout.cxx:42:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] Tutorials/src/tableIOout.cxx:46:21: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] Tutorials/src/tableIOout.cxx:46:54: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/tableIOout.cxx:69:8: warning: constructor does not initialize these fields: mineta, maxeta [cppcoreguidelines-pro-type-member-init] ``` #### `Tutorials/src/trackIteration.cxx` ```text Tutorials/src/trackIteration.cxx:25:3: warning: no header providing "size_t" is directly included [misc-include-cleaner] Tutorials/src/trackIteration.cxx:28:21: warning: no header providing "o2::aod::Track" is directly included [misc-include-cleaner] Tutorials/src/trackIteration.cxx:44:21: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/tracksCombinations.cxx` ```text Tutorials/src/tracksCombinations.cxx:31:1: warning: no header providing "DECLARE_SOA_COLUMN" is directly included [misc-include-cleaner] Tutorials/src/tracksCombinations.cxx:33:1: warning: no header providing "DECLARE_SOA_TABLE" is directly included [misc-include-cleaner] Tutorials/src/tracksCombinations.cxx:38:21: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/tracksCombinations.cxx:52:8: warning: no header providing "std::vector" is directly included [misc-include-cleaner] Tutorials/src/tracksCombinations.cxx:52:29: warning: no header providing "o2::framework::VARIABLE_WIDTH" is directly included [misc-include-cleaner] Tutorials/src/tracksCombinations.cxx:54:3: warning: no header providing "o2::framework::ColumnBinningPolicy" is directly included [misc-include-cleaner] Tutorials/src/tracksCombinations.cxx:54:35: warning: no header providing "o2::aod::track::X" is directly included [misc-include-cleaner] Tutorials/src/tracksCombinations.cxx:54:50: warning: no header providing "o2::aod::track::Y" is directly included [misc-include-cleaner] Tutorials/src/tracksCombinations.cxx:71:3: warning: no header providing "o2::framework::ConfigurableAxis" is directly included [misc-include-cleaner] Tutorials/src/tracksCombinations.cxx:74:21: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/src/tracksCombinations.cxx:74:31: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/src/tracksCombinations.cxx:76:61: warning: no header providing "o2::aod::collision::PosZ" is directly included [misc-include-cleaner] Tutorials/src/tracksCombinations.cxx:95:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/src/tracksCombinations.cxx:99:5: warning: no header providing "o2::framework::Partition" is directly included [misc-include-cleaner] Tutorials/src/tracksCombinations.cxx:99:50: warning: no header providing "o2::aod::track::phi" is directly included [misc-include-cleaner] Tutorials/src/tracksCombinations.cxx:119:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] Tutorials/src/tracksCombinations.cxx:155:3: warning: no header providing "o2::framework::NoBinningPolicy" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/treeCreator.cxx` ```text Tutorials/src/treeCreator.cxx:43:3: warning: no header providing "o2::framework::Configurable" is directly included [misc-include-cleaner] Tutorials/src/treeCreator.cxx:45:3: warning: no header providing "o2::framework::Produces" is directly included [misc-include-cleaner] Tutorials/src/treeCreator.cxx:46:3: warning: no header providing "o2::framework::expressions::Filter" is directly included [misc-include-cleaner] Tutorials/src/treeCreator.cxx:46:26: warning: no header providing "o2::framework::expressions::nabs" is directly included [misc-include-cleaner] Tutorials/src/treeCreator.cxx:46:43: warning: no header providing "o2::aod::track::eta" is directly included [misc-include-cleaner] Tutorials/src/treeCreator.cxx:48:25: warning: no header providing "o2::soa::Join" is directly included [misc-include-cleaner] Tutorials/src/treeCreator.cxx:48:35: warning: no header providing "o2::aod::Collisions" is directly included [misc-include-cleaner] Tutorials/src/treeCreator.cxx:48:92: warning: no header providing "o2::soa::Filtered" is directly included [misc-include-cleaner] Tutorials/src/treeCreator.cxx:48:106: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/treeCreator.cxx:53:3: warning: no header providing "PROCESS_SWITCH" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/usingPDGService.cxx` ```text Tutorials/src/usingPDGService.cxx:19:8: warning: constructor does not initialize these fields: pdg [cppcoreguidelines-pro-type-member-init] Tutorials/src/usingPDGService.cxx:20:3: warning: no header providing "o2::framework::Service" is directly included [misc-include-cleaner] Tutorials/src/usingPDGService.cxx:21:3: warning: no header providing "o2::framework::OutputObj" is directly included [misc-include-cleaner] Tutorials/src/usingPDGService.cxx:21:13: warning: no header providing "TH1F" is directly included [misc-include-cleaner] Tutorials/src/usingPDGService.cxx:24:21: warning: no header providing "o2::aod::McCollision" is directly included [misc-include-cleaner] Tutorials/src/usingPDGService.cxx:24:46: warning: no header providing "o2::aod::McParticles" is directly included [misc-include-cleaner] ``` #### `Tutorials/src/weakDecayIteration.cxx` ```text Tutorials/src/weakDecayIteration.cxx:27:21: warning: no header providing "o2::aod::V0s" is directly included [misc-include-cleaner] Tutorials/src/weakDecayIteration.cxx:27:42: warning: no header providing "o2::aod::Tracks" is directly included [misc-include-cleaner] Tutorials/src/weakDecayIteration.cxx:36:21: warning: no header providing "o2::aod::Cascades" is directly included [misc-include-cleaner] Tutorials/src/weakDecayIteration.cxx:46:21: warning: no header providing "o2::aod::Collision" is directly included [misc-include-cleaner] ```