forked from AliceO2Group/O2Physics
-
Notifications
You must be signed in to change notification settings - Fork 0
report_cppcheck
Vít Kučera edited this page Apr 20, 2026
·
25 revisions
To access the full raw file, add .md in the URL.
| category | issues |
|---|---|
arrayIndexThenCheck |
1 |
assignBoolToFloat |
76 |
badBitmaskCheck |
11 |
bitwiseOnBoolean |
16 |
clarifyCondition |
1 |
constParameter |
7 |
constParameterCallback |
3 |
constParameterPointer |
5 |
constParameterReference |
63 |
constVariable |
64 |
constVariablePointer |
21 |
constVariableReference |
86 |
cstyleCast |
169 |
ctunullpointer |
5 |
dangerousTypeCast |
3 |
derefInvalidIteratorRedundantCheck |
1 |
duplicateAssignExpression |
19 |
duplicateBreak |
9 |
duplicateCondition |
77 |
duplicateConditionalAssign |
2 |
duplicateExpression |
14 |
duplicateExpressionTernary |
4 |
identicalConditionAfterEarlyExit |
12 |
identicalInnerCondition |
3 |
invalidscanf |
4 |
iterateByValue |
11 |
knownConditionTrueFalse |
193 |
knownEmptyContainer |
1 |
missingOverride |
17 |
multiCondition |
43 |
noConstructor |
9 |
noCopyConstructor |
7 |
noExplicitConstructor |
27 |
noOperatorEq |
6 |
nullPointerDefaultArg |
4 |
nullPointerRedundantCheck |
34 |
operatorEqVarError |
4 |
passedByValue |
188 |
passedByValueCallback |
6 |
postfixOperator |
6 |
redundantAssignment |
41 |
redundantCondition |
28 |
redundantInitialization |
23 |
redundantPointerOp |
3 |
returnByReference |
37 |
shadowArgument |
23 |
shadowFunction |
5 |
shadowVariable |
329 |
shiftTooManyBitsSigned |
2 |
stlFindInsert |
3 |
stlIfStrFind |
2 |
stlcstrAssignment |
8 |
stlcstrConcat |
1 |
throwInEntryPoint |
1 |
truncLongCastAssignment |
17 |
uninitMemberVar |
105 |
uninitMemberVarPrivate |
28 |
unreachableCode |
9 |
unusedPrivateFunction |
1 |
unusedScopedObject |
5 |
unusedStructMember |
210 |
unusedVariable |
34 |
useInitializationList |
20 |
uselessAssignmentArg |
1 |
virtualCallInConstructor |
6 |
| total | 2174 |
| directory | issues | issues per 1000 lines |
|---|---|---|
ALICE3 |
115 | 5.67 |
Common |
86 | 2.06 |
DPG |
59 | 1.85 |
EventFiltering |
45 | 2.64 |
PWGCF |
608 | 3.28 |
PWGDQ |
213 | 3.56 |
PWGEM |
151 | 2.04 |
PWGHF |
41 | 0.361 |
PWGJE |
71 | 1.04 |
PWGLF |
452 | 2.25 |
PWGMM |
95 | 4.73 |
PWGUD |
222 | 5.01 |
Tools |
3 | 0.59 |
Tutorials |
13 | 1.2 |
| total | 2174 | 2.43 |
ALICE3/Core/Decayer.h:47:3: warning: Member variable 'Decayer::mBz' is not initialized in the constructor. [uninitMemberVar]
ALICE3/Core/DetLayer.h:34:3: warning: Member variable 'DetLayer::mR' is not initialized in the constructor. [uninitMemberVar]
ALICE3/Core/DetLayer.h:34:3: warning: Member variable 'DetLayer::mZ' is not initialized in the constructor. [uninitMemberVar]
ALICE3/Core/DetLayer.h:34:3: warning: Member variable 'DetLayer::mX0' is not initialized in the constructor. [uninitMemberVar]
ALICE3/Core/DetLayer.h:34:3: warning: Member variable 'DetLayer::mXrho' is not initialized in the constructor. [uninitMemberVar]
ALICE3/Core/DetLayer.h:34:3: warning: Member variable 'DetLayer::mResRPhi' is not initialized in the constructor. [uninitMemberVar]
ALICE3/Core/DetLayer.h:34:3: warning: Member variable 'DetLayer::mResZ' is not initialized in the constructor. [uninitMemberVar]
ALICE3/Core/DetLayer.h:34:3: warning: Member variable 'DetLayer::mEff' is not initialized in the constructor. [uninitMemberVar]
ALICE3/Core/DetLayer.h:34:3: warning: Member variable 'DetLayer::mType' is not initialized in the constructor. [uninitMemberVar]
ALICE3/Core/FastTracker.cxx:157:65: performance: Function parameter 'configMap' should be passed by const reference. [passedByValue]
ALICE3/Core/FastTracker.h:57:25: performance: Function 'GetLayers()' should return member 'layers' by const reference. [returnByReference]
ALICE3/Core/FastTracker.h:62:45: performance: Function parameter 'layerName' should be passed by const reference. [passedByValue]
ALICE3/Core/FastTracker.h:63:36: performance: Function parameter 'layerName' should be passed by const reference. [passedByValue]
ALICE3/Core/FastTracker.h:64:44: performance: Function parameter 'layerName' should be passed by const reference. [passedByValue]
ALICE3/Core/FastTracker.h:65:41: performance: Function parameter 'layerName' should be passed by const reference. [passedByValue]
ALICE3/Core/FastTracker.h:66:40: performance: Function parameter 'layerName' should be passed by const reference. [passedByValue]
ALICE3/Core/GeometryContainer.cxx:97:8: style: Local variable 'cleanLutWhenLoaded' shadows outer function [shadowFunction]
ALICE3/Core/GeometryContainer.cxx:162:82: performance: Function parameter 'downloadPath' should be passed by const reference. [passedByValue]
ALICE3/Core/GeometryContainer.cxx:105:21: style: Variable 'configFile' can be declared as reference to const [constVariableReference]
ALICE3/Core/GeometryContainer.cxx:76:11: performance: Inefficient usage of string::find() in condition; string::starts_with() could be faster. [stlIfStrFind]
ALICE3/Core/GeometryContainer.h:38:5: performance: Variable 'mFileName' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList]
ALICE3/Core/GeometryContainer.h:64:61: performance: Function 'getConfigurations()' should return member 'mConfigurations' by const reference. [returnByReference]
ALICE3/Core/GeometryContainer.h:66:28: performance: Function 'getLayerNames()' should return member 'mLayerNames' by const reference. [returnByReference]
ALICE3/Core/GeometryContainer.h:36:38: performance: Function parameter 'filename' should be passed by const reference. [passedByValue]
ALICE3/Core/GeometryContainer.h:62:76: performance: Function parameter 'downloadPath' should be passed by const reference. [passedByValue]
ALICE3/Core/TrackUtilities.cxx:31:76: performance: Function parameter 'productionVertex' should be passed by const reference. [passedByValue]
ALICE3/Core/TrackUtilities.cxx:32:74: style: Parameter 'o2track' can be declared as reference to const [constParameterReference]
ALICE3/Core/TrackUtilities.h:86:57: performance: Function parameter 'productionVertex' should be passed by const reference. [passedByValue]
ALICE3/Core/TrackUtilities.h:74:63: performance: Function parameter 'productionVertex' should be passed by const reference. [passedByValue]
ALICE3/Macros/testFastTracker.C:22:34: performance: Function parameter 'geometryFile' should be passed by const reference. [passedByValue]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::collisionId' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::pdgCode' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::statusCode' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::flags' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::mothersIds' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::daughtersIdSlice' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::weight' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::px' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::py' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::pz' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::e' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::vx' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::vy' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::vz' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::vt' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::phi' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::eta' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::pt' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::p' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::y' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::isAlive' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:92:5: warning: Member variable 'McParticleAlice3::isPrimary' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx:303:9: style: Variable 'daughtersIdSlice' can be declared as const array [constVariable]
ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:303:15: style: Local variable 'pdg' shadows outer variable [shadowVariable]
ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:591:17: style: Local variable 'radiusRipple' shadows outer function [shadowFunction]
ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:362:19: style: Variable 'particleNames1' can be declared as const array [constVariable]
ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:363:19: style: Variable 'particleNames2' can be declared as const array [constVariable]
ALICE3/TableProducer/OTF/onTheFlyRichPid.cxx:707:21: style: float result is assigned to const double variable. If the variable is const double to avoid loss of information, then you have loss of information. [truncLongCastAssignment]
ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:329:7: warning: Struct 'TOFLayerEfficiency' does not have a copy constructor which is recommended since it has dynamic memory/resource management. [noCopyConstructor]
ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:329:7: warning: Struct 'TOFLayerEfficiency' does not have a operator= which is recommended since it has dynamic memory/resource management. [noOperatorEq]
ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:170:15: style: Local variable 'pdg' shadows outer variable [shadowVariable]
ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:555:47: style: Parameter 'tracks' can be declared as reference to const [constParameterReference]
ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:256:19: style: Variable 'particleNames' can be declared as const array [constVariable]
ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:257:19: style: Variable 'particleNames2' can be declared as const array [constVariable]
ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx:623:15: style: float result is assigned to double variable. If the variable is double to avoid loss of information, then you have loss of information. [truncLongCastAssignment]
ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:254:5: warning: Member variable 'TrackAlice3::mcLabel' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:254:5: warning: Member variable 'TrackAlice3::isDecayDau' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:254:5: warning: Member variable 'TrackAlice3::isWeakDecayDau' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:254:5: warning: Member variable 'TrackAlice3::isUsedInCascading' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:254:5: warning: Member variable 'TrackAlice3::nSiliconHits' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:254:5: warning: Member variable 'TrackAlice3::nTPCHits' is not initialized in the constructor. [uninitMemberVar]
ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1719:57: style: Redundant condition: extraQAwithoutDecayDaughters. '!A || (A && B)' is equivalent to '!A || B' [redundantCondition]
ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1787:57: style: Redundant condition: extraQAwithoutDecayDaughters. '!A || (A && B)' is equivalent to '!A || B' [redundantCondition]
ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1311:23: style: Redundant initialization for 'kinkVtx'. The initialized value is overwritten before it is read. [redundantInitialization]
ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1090:25: style: Local variable 'vtx' shadows outer variable [shadowVariable]
ALICE3/TableProducer/OTF/onTheFlyTracker.cxx:1502:25: style: Local variable 'vtx' shadows outer variable [shadowVariable]
ALICE3/TableProducer/alice3-dq-table-maker.cxx:302:14: style: Local variable 'ib' shadows outer variable [shadowVariable]
ALICE3/TableProducer/alice3-dq-table-maker.cxx:316:14: style: Local variable 'ib' shadows outer variable [shadowVariable]
ALICE3/TableProducer/alice3-dq-table-maker.cxx:565:13: style: Local variable 'i' shadows outer variable [shadowVariable]
ALICE3/TableProducer/alice3-dq-table-maker.cxx:388:45: performance: Searching before insertion is not necessary. Instead of 'fLabelsMap[mctrack.globalIndex()]=trackCounter' consider using 'fLabelsMap.try_emplace(mctrack.globalIndex(), trackCounter);'. [stlFindInsert]
ALICE3/TableProducer/alice3-dq-table-maker.cxx:125:38: style: struct member 'Alice3DQTableMaker::fMuonCuts' is never used. [unusedStructMember]
ALICE3/TableProducer/alice3MulticharmFinder.cxx:221:9: style: struct member 'Anonymous3::nSiliconHitsPiCC' is never used. [unusedStructMember]
ALICE3/TableProducer/alice3MulticharmFinder.cxx:222:9: style: struct member 'Anonymous3::nTPCHitsPiCC' is never used. [unusedStructMember]
ALICE3/TableProducer/alice3TrackingTranslator.cxx:94:28: performance: Function parameter 'filename' should be passed by const reference. [passedByValue]
ALICE3/TableProducer/alice3TrackingTranslator.cxx:94:50: performance: Function parameter 'treename' should be passed by const reference. [passedByValue]
ALICE3/TableProducer/alice3TrackingTranslator.cxx:118:32: performance: Function parameter 'filename' should be passed by const reference. [passedByValue]
ALICE3/TableProducer/alice3TrackingTranslator.cxx:118:54: performance: Function parameter 'treename' should be passed by const reference. [passedByValue]
ALICE3/TableProducer/alice3TrackingTranslator.cxx:155:29: performance: Function parameter 'filename' should be passed by const reference. [passedByValue]
ALICE3/TableProducer/alice3TrackingTranslator.cxx:155:51: performance: Function parameter 'treename' should be passed by const reference. [passedByValue]
ALICE3/TableProducer/alice3TrackingTranslator.cxx:224:28: performance: Function parameter 'filename' should be passed by const reference. [passedByValue]
ALICE3/TableProducer/alice3TrackingTranslator.cxx:224:50: performance: Function parameter 'treename' should be passed by const reference. [passedByValue]
ALICE3/TableProducer/alice3TrackingTranslator.cxx:354:15: style: struct member 'addedParticle::px' is never used. [unusedStructMember]
ALICE3/TableProducer/alice3TrackingTranslator.cxx:355:15: style: struct member 'addedParticle::py' is never used. [unusedStructMember]
ALICE3/TableProducer/alice3TrackingTranslator.cxx:356:15: style: struct member 'addedParticle::pz' is never used. [unusedStructMember]
ALICE3/TableProducer/alice3TrackingTranslator.cxx:357:15: style: struct member 'addedParticle::vx' is never used. [unusedStructMember]
ALICE3/TableProducer/alice3TrackingTranslator.cxx:358:15: style: struct member 'addedParticle::vy' is never used. [unusedStructMember]
ALICE3/TableProducer/alice3TrackingTranslator.cxx:359:15: style: struct member 'addedParticle::vz' is never used. [unusedStructMember]
ALICE3/Tasks/alice3-dilepton.cxx:717:13: warning: Identical condition '!mcParticle.isPhysicalPrimary()', second condition is always false [identicalConditionAfterEarlyExit]
ALICE3/Tasks/alice3-dilepton.cxx:445:22: style: Condition 'motherid<0' is always true [knownConditionTrueFalse]
ALICE3/Tasks/alice3-dq-efficiency.cxx:1082:39: style: Redundant condition: fConfigMC.skimSignalOnly. '!A || (A && B)' is equivalent to '!A || B' [redundantCondition]
ALICE3/Tasks/alice3-dq-efficiency.cxx:901:21: style: Local variable 'cutNamesStr' shadows outer variable [shadowVariable]
ALICE3/Tasks/alice3-dq-efficiency.cxx:1098:33: style: Local variable 'isig' shadows outer variable [shadowVariable]
ALICE3/Tasks/alice3-dq-efficiency.cxx:1137:35: style: Local variable 'isig' shadows outer variable [shadowVariable]
ALICE3/Tasks/alice3-dq-efficiency.cxx:1152:35: style: Local variable 'isig' shadows outer variable [shadowVariable]
ALICE3/Tasks/alice3-dq-efficiency.cxx:1772:17: style: Local variable 'cutNamesStr' shadows outer variable [shadowVariable]
ALICE3/Tasks/alice3-dq-efficiency.cxx:2069:31: style: Local variable 'isig' shadows outer variable [shadowVariable]
ALICE3/Tasks/alice3-dq-efficiency.cxx:2102:35: style: Local variable 'isig' shadows outer variable [shadowVariable]
ALICE3/Tasks/alice3-dq-efficiency.cxx:2132:33: style: Local variable 'isig' shadows outer variable [shadowVariable]
ALICE3/Tasks/alice3-dq-efficiency.cxx:2157:37: style: Local variable 'isig' shadows outer variable [shadowVariable]
ALICE3/Tasks/alice3-dq-efficiency.cxx:2313:27: style: Local variable 'isig' shadows outer variable [shadowVariable]
ALICE3/Tasks/alice3-dq-efficiency.cxx:2324:31: style: Local variable 'isig' shadows outer variable [shadowVariable]
ALICE3/Tasks/alice3-dq-efficiency.cxx:2337:29: style: Local variable 'isig' shadows outer variable [shadowVariable]
ALICE3/Tasks/alice3-dq-efficiency.cxx:2346:33: style: Local variable 'isig' shadows outer variable [shadowVariable]
ALICE3/Tasks/alice3-lutmaker.cxx:210:5: style: Statements following 'return' will never be executed. [unreachableCode]
ALICE3/Tasks/alice3Multicharm.cxx:58:22: style: struct member 'Alice3Multicharm::pdgToBin' is never used. [unusedStructMember]
Common/CCDB/macros/ctpRateF.C:128:111: performance: Function parameter 'sourceName' should be passed by const reference. [passedByValue]
Common/CCDB/macros/upload_event_selection_params.C:41:8: style: Variable 'isNew' can be declared as const array [constVariable]
Common/CCDB/macros/upload_event_selection_params_run3.C:58:7: style: Condition 'uploadDefaultParameters' is always true [knownConditionTrueFalse]
Common/CCDB/macros/upload_trigger_aliases.C:87:16: style: Variable 'al' can be declared as reference to const [constVariableReference]
Common/Core/PID/PIDTOFParamService.cxx:49:116: performance: Function parameter 'task' should be passed by const reference. [passedByValue]
Common/Core/PID/PIDTOFParamService.h:166:87: performance: Function parameter 'task' should be passed by const reference. [passedByValue]
Common/Core/PID/PIDTOFParamService.h:191:74: performance: Function parameter 'name' should be passed by const reference. [passedByValue]
Common/Core/PID/PIDTOFParamService.h:191:108: performance: Function parameter 'task' should be passed by const reference. [passedByValue]
Common/Core/PID/ParamBase.h:257:14: performance: Function 'GetParameters()' should return member 'mParameters' by const reference. [returnByReference]
Common/Core/PID/TPCPIDResponse.h:63:30: performance: Function 'GetBetheBlochParams()' should return member 'mBetheBlochParams' by const reference. [returnByReference]
Common/Core/PID/TPCPIDResponse.h:64:30: performance: Function 'GetResolutionParamsDefault()' should return member 'mResolutionParamsDefault' by const reference. [returnByReference]
Common/Core/PID/TPCPIDResponse.h:65:29: performance: Function 'GetResolutionParams()' should return member 'mResolutionParams' by const reference. [returnByReference]
Common/Core/Zorro.h:60:20: performance: Function 'getLastResult()' should return member 'mLastResult' by const reference. [returnByReference]
Common/Core/Zorro.h:61:20: performance: Function 'getTOIcounters()' should return member 'mTOIcounts' by const reference. [returnByReference]
Common/Core/Zorro.h:62:20: performance: Function 'getATcounters()' should return member 'mATcounts' by const reference. [returnByReference]
Common/Core/ZorroSummary.cxx:42:11: style: Variable 'analysedToiCounters' can be declared as reference to const [constVariableReference]
Common/Core/ZorroSummary.cxx:37:11: style: Variable 'entry' can be declared as pointer to const [constVariablePointer]
Common/Core/macros/testMetadataHelper.C:48:12: style: C-style pointer casting [cstyleCast]
Common/Core/macros/testMetadataHelper.C:62:22: style: C-style pointer casting [cstyleCast]
Common/Core/macros/testMetadataHelper.C:131:69: performance: Function parameter 'hasHashMap' should be passed by const reference. [passedByValue]
Common/Core/macros/testMetadataHelper.C:132:59: performance: Function parameter 'commitHash' should be passed by const reference. [passedByValue]
Common/Core/macros/testMetadataHelper.C:133:59: performance: Function parameter 'ccdbUrl' should be passed by const reference. [passedByValue]
Common/Core/macros/testMetadataHelper.C:160:37: performance: Function parameter 'aod' should be passed by const reference. [passedByValue]
Common/TableProducer/PID/pidTPC.cxx:328:9: warning: Either the condition '!response' is redundant or there is possible null pointer dereference: response. [nullPointerRedundantCheck]
Common/TableProducer/PID/pidTPC.cxx:558:9: warning: Either the condition '!response' is redundant or there is possible null pointer dereference: response. [nullPointerRedundantCheck]
Common/TableProducer/PID/pidTPC.cxx:655:9: warning: Either the condition '!response' is redundant or there is possible null pointer dereference: response. [nullPointerRedundantCheck]
Common/TableProducer/PID/pidTPC.cxx:738:9: warning: Either the condition '!response' is redundant or there is possible null pointer dereference: response. [nullPointerRedundantCheck]
Common/TableProducer/centralityTable.cxx:659:38: style: Parameter 'table' can be declared as reference to const [constParameterReference]
Common/TableProducer/eseTableProducer.cxx:290:91: style: C-style pointer casting [cstyleCast]
Common/TableProducer/match-mft-ft0.cxx:169:13: style: Variable 'minBCId' is reassigned a value before the old one has been used. [redundantAssignment]
Common/TableProducer/match-mft-mch-data-mc.cxx:777:45: style: Unused variable: map_tagMatchingParams [unusedVariable]
Common/TableProducer/match-mft-mch-data.cxx:777:45: style: Unused variable: map_tagMatchingParams [unusedVariable]
Common/TableProducer/occupancyTableProducer.cxx:480:29: warning: Identical condition 'tableMode==checkTableMode', second condition is always false [identicalConditionAfterEarlyExit]
Common/TableProducer/occupancyTableProducer.cxx:480:64: warning: Identical condition 'meanTableMode==checkTableMode', second condition is always false [identicalConditionAfterEarlyExit]
Common/TableProducer/occupancyTableProducer.cxx:480:101: warning: Identical condition 'robustTableMode==checkTableMode', second condition is always false [identicalConditionAfterEarlyExit]
Common/TableProducer/occupancyTableProducer.cxx:480:142: warning: Identical condition 'meanRobustTableMode==checkTableMode', second condition is always false [identicalConditionAfterEarlyExit]
Common/TableProducer/occupancyTableProducer.cxx:1806:102: warning: Identical condition 'qaMode==checkQAMode', second condition is always false [identicalConditionAfterEarlyExit]
Common/TableProducer/occupancyTableProducer.cxx:1961:34: warning: Identical condition 'doAmbgUpdate', second condition is always false [identicalConditionAfterEarlyExit]
Common/TableProducer/occupancyTableProducer.cxx:1966:15: warning: Identical condition 'doAmbgUpdate', second condition is always false [identicalConditionAfterEarlyExit]
Common/TableProducer/occupancyTableProducer.cxx:443:29: style: The if condition is the same as the previous if condition [duplicateCondition]
Common/TableProducer/occupancyTableProducer.cxx:454:33: style: The if condition is the same as the previous if condition [duplicateCondition]
Common/TableProducer/occupancyTableProducer.cxx:465:35: style: The if condition is the same as the previous if condition [duplicateCondition]
Common/TableProducer/occupancyTableProducer.cxx:476:39: style: The if condition is the same as the previous if condition [duplicateCondition]
Common/TableProducer/occupancyTableProducer.cxx:1772:33: style: The if condition is the same as the previous if condition [duplicateCondition]
Common/TableProducer/occupancyTableProducer.cxx:1783:39: style: The if condition is the same as the previous if condition [duplicateCondition]
Common/TableProducer/occupancyTableProducer.cxx:805:61: style: Same expression on both sides of '/'. [duplicateExpression]
Common/TableProducer/occupancyTableProducer.cxx:2424:5: style: Statements following 'return' will never be executed. [unreachableCode]
Common/TableProducer/qVectorsTable.cxx:289:16: style: Variable 'objft0Gain' can be declared as pointer to const [constVariablePointer]
Common/TableProducer/qVectorsTable.cxx:300:16: style: Variable 'objfv0Gain' can be declared as pointer to const [constVariablePointer]
Common/Tasks/qaMuon.cxx:3672:40: style: Expression is always false because 'else if' condition matches previous condition at line 3656. [multiCondition]
Common/Tasks/qaMuon.cxx:3743:40: style: Expression is always false because 'else if' condition matches previous condition at line 3727. [multiCondition]
Common/Tasks/qaMuon.cxx:2555:13: style: Variable 'fgValuesCollMatched' can be declared as reference to const [constVariableReference]
Common/Tasks/qaMuon.cxx:2616:13: style: Variable 'fgValuesCollMCH' can be declared as reference to const [constVariableReference]
Common/Tools/EventSelectionModule.h:678:120: style: Parameter 'mapGlobalBcVtxZ' can be declared as reference to const [constParameterReference]
Common/Tools/EventSelectionModule.h:1437:11: performance: Prefer prefix ++/-- operators for non-primitive types. [postfixOperator]
Common/Tools/Multiplicity/MultModule.h:1288:38: style: Parameter 'table' can be declared as reference to const [constParameterReference]
Common/Tools/Multiplicity/macros/runCalibration.C:41:17: style: C-style pointer casting [cstyleCast]
Common/Tools/Multiplicity/macros/runCalibration.C:42:30: style: C-style pointer casting [cstyleCast]
Common/Tools/Multiplicity/macros/runCalibration.C:43:28: style: C-style pointer casting [cstyleCast]
Common/Tools/Multiplicity/macros/runCalibration.C:45:21: style: C-style pointer casting [cstyleCast]
Common/Tools/Multiplicity/macros/runCalibration.C:46:16: style: C-style pointer casting [cstyleCast]
Common/Tools/Multiplicity/macros/runCalibration.C:163:19: style: C-style pointer casting [cstyleCast]
Common/Tools/Multiplicity/macros/runCalibration.C:43:9: style: Variable 'hGlauberFitRange' can be declared as pointer to const [constVariablePointer]
Common/Tools/Multiplicity/macros/runGlauberFit.C:285:20: style: Condition 'lAttempts<lMaxAttempts' is always true [knownConditionTrueFalse]
Common/Tools/Multiplicity/macros/runGlauberFit.C:101:21: warning: Either the condition '!file' is redundant or there is possible null pointer dereference: file. [nullPointerRedundantCheck]
Common/Tools/Multiplicity/macros/runGlauberFit.C:104:49: warning: Either the condition '!hV0Mfine' is redundant or there is possible null pointer dereference: hV0Mfine. [nullPointerRedundantCheck]
Common/Tools/Multiplicity/macros/runGlauberFit.C:105:3: warning: Either the condition '!hV0Mfine' is redundant or there is possible null pointer dereference: hV0Mfine. [nullPointerRedundantCheck]
Common/Tools/Multiplicity/macros/runGlauberFit.C:112:30: warning: Either the condition '!hV0Mfine' is redundant or there is possible null pointer dereference: hV0Mfine. [nullPointerRedundantCheck]
Common/Tools/Multiplicity/macros/runGlauberFit.C:113:30: warning: Either the condition '!hV0Mfine' is redundant or there is possible null pointer dereference: hV0Mfine. [nullPointerRedundantCheck]
Common/Tools/Multiplicity/macros/runGlauberFit.C:114:28: warning: Either the condition '!hV0Mfine' is redundant or there is possible null pointer dereference: hV0Mfine. [nullPointerRedundantCheck]
Common/Tools/Multiplicity/macros/runGlauberFit.C:114:52: warning: Either the condition '!hV0Mfine' is redundant or there is possible null pointer dereference: hV0Mfine. [nullPointerRedundantCheck]
Common/Tools/Multiplicity/macros/runGlauberFit.C:101:14: style: C-style pointer casting [cstyleCast]
Common/Tools/Multiplicity/macros/runGlauberFit.C:127:16: style: C-style pointer casting [cstyleCast]
Common/Tools/Multiplicity/macros/runGlauberFit.C:128:25: style: C-style pointer casting [cstyleCast]
Common/Tools/Multiplicity/macros/runGlauberFit.C:213:17: style: C-style pointer casting [cstyleCast]
Common/Tools/Multiplicity/macros/runGlauberFit.C:294:20: style: C-style pointer casting [cstyleCast]
Common/Tools/Multiplicity/macros/runGlauberFit.C:295:18: style: C-style pointer casting [cstyleCast]
Common/Tools/Multiplicity/macros/runGlauberFit.C:348:24: style: C-style pointer casting [cstyleCast]
Common/Tools/Multiplicity/macros/saveCorrelation.C:32:19: style: C-style pointer casting [cstyleCast]
Common/Tools/Multiplicity/macros/saveCorrelation.C:36:12: style: C-style pointer casting [cstyleCast]
Common/Tools/Multiplicity/macros/saveCorrelation.C:39:12: style: C-style pointer casting [cstyleCast]
Common/Tools/Multiplicity/macros/saveCorrelation.C:42:12: style: C-style pointer casting [cstyleCast]
Common/Tools/Multiplicity/macros/saveCorrelation.C:45:12: style: C-style pointer casting [cstyleCast]
Common/Tools/Multiplicity/macros/saveCorrelation.C:48:12: style: C-style pointer casting [cstyleCast]
Common/Tools/Multiplicity/macros/saveCorrelation.C:62:9: style: Variable 'hNpNc' can be declared as pointer to const [constVariablePointer]
Common/Tools/PID/pidTPCModule.h:309:45: performance: Function parameter 'particle' should be passed by const reference. [passedByValue]
DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:252:17: style: Local variable 'signedP' shadows outer variable [shadowVariable]
DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:75:21: style: int result is assigned to long variable. If the variable is long to avoid loss of information, then you have loss of information. [truncLongCastAssignment]
DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:72:7: style: struct member 'dEdxVsOccupancyWithTrackQAinfoTask::nOrbits' is never used. [unusedStructMember]
DPG/Tasks/AOTEvent/dEdxVsOccupancyWithTrackQAinfo.cxx:73:10: style: struct member 'dEdxVsOccupancyWithTrackQAinfoTask::minOrbit' is never used. [unusedStructMember]
DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:134:21: style: int result is assigned to long variable. If the variable is long to avoid loss of information, then you have loss of information. [truncLongCastAssignment]
DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:131:7: style: struct member 'DetectorOccupancyQaTask::nOrbits' is never used. [unusedStructMember]
DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:132:10: style: struct member 'DetectorOccupancyQaTask::minOrbit' is never used. [unusedStructMember]
DPG/Tasks/AOTEvent/eventSelectionQa.cxx:573:16: style: inconclusive: Boolean expression 'accepted' is used in bitwise operation. [bitwiseOnBoolean]
DPG/Tasks/AOTEvent/eventSelectionQa.cxx:573:32: style: inconclusive: Boolean expression 'isINT1period' is used in bitwise operation. Did you mean '&&'? [bitwiseOnBoolean]
DPG/Tasks/AOTEvent/eventSelectionQa.cxx:795:43: style: inconclusive: Boolean expression 'pastActivityFT0' is used in bitwise operation. Did you mean '||'? [bitwiseOnBoolean]
DPG/Tasks/AOTEvent/eventSelectionQa.cxx:795:61: style: inconclusive: Boolean expression 'pastActivityFDD' is used in bitwise operation. Did you mean '||'? [bitwiseOnBoolean]
DPG/Tasks/AOTEvent/eventSelectionQa.cxx:572:33: style: Boolean result is used in bitwise operation. Clarify expression with parentheses. [clarifyCondition]
DPG/Tasks/AOTEvent/eventSelectionQa.cxx:114:61: style: Same expression in both branches of ternary operator. [duplicateExpressionTernary]
DPG/Tasks/AOTEvent/eventSelectionQa.cxx:116:61: style: Same expression in both branches of ternary operator. [duplicateExpressionTernary]
DPG/Tasks/AOTEvent/eventSelectionQa.cxx:94:69: style: Parameter 'bcs' can be declared as reference to const [constParameterReference]
DPG/Tasks/AOTEvent/eventSelectionQa.cxx:84:21: style: int result is assigned to long variable. If the variable is long to avoid loss of information, then you have loss of information. [truncLongCastAssignment]
DPG/Tasks/AOTEvent/eventSelectionQa.cxx:632:19: style: int result is assigned to long variable. If the variable is long to avoid loss of information, then you have loss of information. [truncLongCastAssignment]
DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:800:43: style: inconclusive: Boolean expression 'pastActivityFT0' is used in bitwise operation. Did you mean '||'? [bitwiseOnBoolean]
DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:828:47: style: inconclusive: Boolean expression 'futureActivityFT0' is used in bitwise operation. Did you mean '||'? [bitwiseOnBoolean]
DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:828:67: style: inconclusive: Boolean expression 'futureActivityFDD' is used in bitwise operation. Did you mean '||'? [bitwiseOnBoolean]
DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:1010:27: style: The if condition is the same as the previous if condition [duplicateCondition]
DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:666:69: style: Parameter 'bcs' can be declared as reference to const [constParameterReference]
DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:77:21: style: int result is assigned to long variable. If the variable is long to avoid loss of information, then you have loss of information. [truncLongCastAssignment]
DPG/Tasks/AOTEvent/matchingQa.cxx:204:69: style: Parameter 'bcs' can be declared as reference to const [constParameterReference]
DPG/Tasks/AOTEvent/rofBorderQa.cxx:277:17: style: int result is assigned to long variable. If the variable is long to avoid loss of information, then you have loss of information. [truncLongCastAssignment]
DPG/Tasks/AOTEvent/timeDependentQa.cxx:243:21: style: Local variable 'nBCsPerOrbit' shadows outer variable [shadowVariable]
DPG/Tasks/AOTTrack/PID/HMPID/hmpidDeuteron.cxx:153:13: style: Condition 'hmpidAbs8cm' is always true [knownConditionTrueFalse]
DPG/Tasks/AOTTrack/PID/HMPID/hmpidDeuteron.cxx:172:13: style: Condition 'hmpidAbs8cm' is always true [knownConditionTrueFalse]
DPG/Tasks/AOTTrack/PID/HMPID/hmpidQa.cxx:115:10: style: Variable 'mass' can be declared as const array [constVariable]
DPG/Tasks/AOTTrack/V0Cascades/qaLamMomResolution.cxx:132:24: style: struct member 'qaLamMomResolution::DCAProtonGen' is never used. [unusedStructMember]
DPG/Tasks/AOTTrack/V0Cascades/qaLamMomResolution.cxx:133:24: style: struct member 'qaLamMomResolution::DCAPionGen' is never used. [unusedStructMember]
DPG/Tasks/AOTTrack/qaEventTrack.cxx:786:9: style: The if condition is the same as the previous if condition [duplicateCondition]
DPG/Tasks/AOTTrack/qaEventTrack.cxx:524:12: style: Local variable 'h1' shadows outer variable [shadowVariable]
DPG/Tasks/AOTTrack/qaEventTrack.cxx:551:12: style: Local variable 'h2' shadows outer variable [shadowVariable]
DPG/Tasks/AOTTrack/qaEventTrack.cxx:644:12: style: Local variable 'h1' shadows outer variable [shadowVariable]
DPG/Tasks/AOTTrack/qaEventTrack.cxx:671:12: style: Local variable 'h2' shadows outer variable [shadowVariable]
DPG/Tasks/AOTTrack/qaEventTrack.cxx:1604:30: portability: Shifting signed 32-bit value by 31 bits is implementation-defined behaviour [shiftTooManyBitsSigned]
DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:559:30: warning: Identical condition 'track.tpcNClsFound()<nClusterTpcMin', second condition is always false [identicalConditionAfterEarlyExit]
DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:156:43: performance: Function parameter 'str_case' should be passed by const reference. [passedByValue]
DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:142:31: style: Parameter 'x' can be declared as pointer to const [constParameterPointer]
DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:142:42: style: Parameter 'par' can be declared as pointer to const [constParameterPointer]
DPG/Tasks/AOTTrack/qaImpPar.cxx:297:107: performance: Prefer prefix ++/-- operators for non-primitive types. [postfixOperator]
DPG/Tasks/AOTTrack/qaImpPar.cxx:315:123: performance: Prefer prefix ++/-- operators for non-primitive types. [postfixOperator]
DPG/Tasks/AOTTrack/qaMatchEff.cxx:1640:19: style: Variable 'sayPrim' is reassigned a value before the old one has been used. [redundantAssignment]
DPG/Tasks/AOTTrack/qaMatchEff.cxx:282:107: performance: Prefer prefix ++/-- operators for non-primitive types. [postfixOperator]
DPG/Tasks/FDD/qaFDD.cxx:683:15: style: The if condition is the same as the previous if condition [duplicateCondition]
DPG/Tasks/FDD/qaFDD.cxx:686:15: style: The if condition is the same as the previous if condition [duplicateCondition]
DPG/Tasks/FDD/qaFDD.cxx:56:10: style: struct member 'fddQA::timeFrameInMs' is never used. [unusedStructMember]
DPG/Tasks/FDD/qaFDD.cxx:60:7: style: struct member 'fddQA::nOrAFDD' is never used. [unusedStructMember]
DPG/Tasks/FDD/qaFDD.cxx:60:16: style: struct member 'fddQA::nOrCFDD' is never used. [unusedStructMember]
DPG/Tasks/FDD/qaFDD.cxx:60:25: style: struct member 'fddQA::nVertexFDD' is never used. [unusedStructMember]
DPG/Tasks/FDD/qaFDD.cxx:61:7: style: struct member 'fddQA::nOrAFTO' is never used. [unusedStructMember]
DPG/Tasks/FDD/qaFDD.cxx:61:16: style: struct member 'fddQA::nOrCFTO' is never used. [unusedStructMember]
DPG/Tasks/FDD/qaFDD.cxx:61:25: style: struct member 'fddQA::nVertexFTO' is never used. [unusedStructMember]
DPG/Tasks/FDD/qaFDD.cxx:62:33: style: struct member 'fddQA::RateVertexPerBCFDD' is never used. [unusedStructMember]
DPG/Tasks/FDD/qaFDD.cxx:62:53: style: struct member 'fddQA::RateVertexPerBCFT0' is never used. [unusedStructMember]
DPG/Tasks/ITS/itsImpParStudies.cxx:493:15: style: Condition 'keepOnlyPhysPrimary' is always true [knownConditionTrueFalse]
DPG/Tasks/ITS/itsImpParStudies.cxx:255:107: performance: Prefer prefix ++/-- operators for non-primitive types. [postfixOperator]
DPG/Tasks/ITS/itsImpParStudies.cxx:273:123: performance: Prefer prefix ++/-- operators for non-primitive types. [postfixOperator]
EventFiltering/PWGCF/CFFilterAll.cxx:1090:47: performance: Function parameter 'trackName' should be passed by const reference. [passedByValue]
EventFiltering/PWGCF/CFFilterAll.cxx:1138:50: performance: Function parameter 'trackName' should be passed by const reference. [passedByValue]
EventFiltering/PWGEM/globalDimuonFilter.cxx:373:121: style: Parameter 'l' can be declared as reference to const [constParameterReference]
EventFiltering/PWGEM/globalDimuonFilter.cxx:373:162: style: Parameter 'r' can be declared as reference to const [constParameterReference]
EventFiltering/PWGHF/HFFilter.cxx:1659:26: style: Local variable 'whichSigmaC' shadows outer variable [shadowVariable]
EventFiltering/PWGLF/filterf1proton.cxx:366:18: style: Expression is always true because 'else if' condition is opposite to previous condition at line 358. [multiCondition]
EventFiltering/PWGLF/filterf1proton.cxx:238:16: style: Local variable 'pT' shadows outer variable [shadowVariable]
EventFiltering/PWGLF/filterf1proton.cxx:386:17: style: Local variable 'pT' shadows outer variable [shadowVariable]
EventFiltering/PWGLF/filterf1proton.cxx:813:14: style: Local variable 'pT' shadows outer variable [shadowVariable]
EventFiltering/PWGLF/filterf1proton.cxx:442:136: performance: Function parameter 'ccdbPath' should be passed by const reference. [passedByValue]
EventFiltering/PWGLF/filterf1proton.cxx:832:16: style: Variable 'nTPCSigmaPos' can be declared as const array [constVariable]
EventFiltering/PWGLF/filterf1proton.cxx:833:16: style: Variable 'nTPCSigmaNeg' can be declared as const array [constVariable]
EventFiltering/PWGLF/filterf1proton.cxx:470:10: style: struct member 'filterf1proton::massF1' is never used. [unusedStructMember]
EventFiltering/PWGLF/filterf1proton.cxx:471:10: style: struct member 'filterf1proton::masskKs0' is never used. [unusedStructMember]
EventFiltering/PWGLF/filterf1proton.cxx:472:10: style: struct member 'filterf1proton::pT' is never used. [unusedStructMember]
EventFiltering/PWGLF/nucleiFilter.cxx:434:13: style: Variable 'nSigmas' can be declared as const array [constVariable]
EventFiltering/PWGLF/nucleiFilter.cxx:299:5: style: struct member 'nucleiFilter::TriggerType' is never used. [unusedStructMember]
EventFiltering/PWGLF/strangenessFilter.cxx:803:18: style: Variable 'track' can be declared as reference to const [constVariableReference]
EventFiltering/PWGLF/strangenessFilter.cxx:753:15: style: Variable 'weigthsEta5' can be declared as const array [constVariable]
EventFiltering/PWGMM/multFilter.cxx:265:14: style: Condition 'mRho>0' is always true [knownConditionTrueFalse]
EventFiltering/PWGMM/multFilter.cxx:246:30: style: Parameter 'signals' can be declared as const array [constParameter]
EventFiltering/PWGMM/multFilter.cxx:489:11: style: Variable 'weigthsEta5' can be declared as const array [constVariable]
EventFiltering/PWGMM/multFilter.cxx:502:11: style: Variable 'weigthsEta6' can be declared as const array [constVariable]
EventFiltering/cefpTask.cxx:72:32: style: Parameter 'config' can be declared as reference to const [constParameterReference]
EventFiltering/macros/cefpOutputChecker.C:24:21: style: C-style pointer casting [cstyleCast]
EventFiltering/macros/cefpOutputChecker.C:25:21: style: C-style pointer casting [cstyleCast]
EventFiltering/macros/cefpOutputChecker.C:28:21: style: C-style pointer casting [cstyleCast]
EventFiltering/macros/cefpOutputChecker.C:29:21: style: C-style pointer casting [cstyleCast]
EventFiltering/macros/cefpOutputChecker.C:35:23: style: C-style pointer casting [cstyleCast]
EventFiltering/macros/cefpOutputChecker.C:21:36: performance: Function parameter 'histoFile' should be passed by const reference. [passedByValue]
EventFiltering/macros/cefpOutputChecker.C:21:84: performance: Function parameter 'treeFile' should be passed by const reference. [passedByValue]
EventFiltering/macros/checkBCRange.C:134:10: style: Variable 'directoryList' can be declared as pointer to const [constVariablePointer]
EventFiltering/macros/checkBCrangesSkimming.C:483:21: style: Local variable 'frame' shadows outer variable [shadowVariable]
EventFiltering/macros/checkBCrangesSkimming.C:291:14: style: Variable 'skimmedFrame' can be declared as reference to const [constVariableReference]
EventFiltering/macros/checkSkimming.C:127:19: style: C-style pointer casting [cstyleCast]
EventFiltering/macros/checkSkimming.C:25:84: performance: Function parameter 'skimmed_path' should be passed by const reference. [passedByValue]
EventFiltering/macros/checkSkimming.C:60:13: performance: Range variable 'lab' should be declared as const reference. [iterateByValue]
EventFiltering/macros/getMenu.C:72:20: style: C-style pointer casting [cstyleCast]
EventFiltering/macros/getMenu.C:113:27: style: Local variable 'periods' shadows outer argument [shadowArgument]
EventFiltering/macros/selectivityPlot.C:48:21: style: C-style pointer casting [cstyleCast]
EventFiltering/macros/selectivityPlot.C:82:11: style: Unused variable: color [unusedVariable]
EventFiltering/macros/uploadOTSobjects.C:104:33: style: The comparison 'Nmax == 0' is always true. [knownConditionTrueFalse]
EventFiltering/macros/uploadOTSobjects.C:42:35: performance: Function parameter 'inputList' should be passed by const reference. [passedByValue]
EventFiltering/macros/uploadOTSobjects.C:42:58: performance: Function parameter 'passName' should be passed by const reference. [passedByValue]
EventFiltering/macros/uploadOTSobjects.C:149:35: performance: Function parameter 'periodName' should be passed by const reference. [passedByValue]
PWGCF/Core/CorrelationContainer.cxx:157:4: style: C-style reference casting [cstyleCast]
PWGCF/Core/CorrelationContainer.cxx:197:6: style: C-style reference casting [cstyleCast]
PWGCF/Core/CorrelationContainer.cxx:208:34: style: C-style reference casting [cstyleCast]
PWGCF/Core/CorrelationContainer.cxx:425:16: style: C-style pointer casting [cstyleCast]
PWGCF/Core/CorrelationContainer.cxx:730:25: style: C-style pointer casting [cstyleCast]
PWGCF/Core/CorrelationContainer.cxx:838:20: style: C-style pointer casting [cstyleCast]
PWGCF/Core/CorrelationContainer.cxx:1172:19: style: C-style pointer casting [cstyleCast]
PWGCF/Core/CorrelationContainer.cxx:1173:17: style: C-style pointer casting [cstyleCast]
PWGCF/Core/CorrelationContainer.cxx:1178:19: style: C-style pointer casting [cstyleCast]
PWGCF/Core/CorrelationContainer.cxx:1179:17: style: C-style pointer casting [cstyleCast]
PWGCF/Core/CorrelationContainer.cxx:1432:23: style: C-style pointer casting [cstyleCast]
PWGCF/Core/CorrelationContainer.cxx:1012:14: warning: Potentially invalid type conversion in old-style C cast, clarify/fix with C++ cast [dangerousTypeCast]
PWGCF/Core/CorrelationContainer.cxx:1022:14: warning: Potentially invalid type conversion in old-style C cast, clarify/fix with C++ cast [dangerousTypeCast]
PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx:177:5: style: struct member 'FactorialMomentsTask::mbinNames' is never used. [unusedStructMember]
PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:2206:33: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:2208:28: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:2226:33: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:2228:28: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:1856:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:2120:26: style: Condition 'occupancy>=250' is always true [knownConditionTrueFalse]
PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:2172:30: style: Condition 'occupancy>=250' is always true [knownConditionTrueFalse]
PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:1170:21: style: Variable 'magneticField' is reassigned a value before the old one has been used. [redundantAssignment]
PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:2351:28: performance: Function parameter 'strTrackType' should be passed by const reference. [passedByValue]
PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:2372:35: performance: Function parameter 'strTrackType' should be passed by const reference. [passedByValue]
PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:2372:56: performance: Function parameter 'strEvSelType' should be passed by const reference. [passedByValue]
PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:584:14: performance: Assigning the result of c_str() to a std::string is slow and redundant. [stlcstrAssignment]
PWGCF/EbyEFluctuations/Tasks/RobustFluctuationObservables.cxx:711:16: performance: Assigning the result of c_str() to a std::string is slow and redundant. [stlcstrAssignment]
PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:1380:11: style: Same expression used in consecutive assignments of 'fQ2122_20' and 'fQ1121_02'. [duplicateAssignExpression]
PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:1410:11: style: Same expression used in consecutive assignments of 'fQ1133_30' and 'fQ1121_30'. [duplicateAssignExpression]
PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:1436:11: style: Same expression used in consecutive assignments of 'fQ112122_110' and 'fQ1141_11'. [duplicateAssignExpression]
PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:2310:11: style: Same expression used in consecutive assignments of 'fQ2122_20' and 'fQ1121_02'. [duplicateAssignExpression]
PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:2340:11: style: Same expression used in consecutive assignments of 'fQ1133_30' and 'fQ1121_30'. [duplicateAssignExpression]
PWGCF/EbyEFluctuations/Tasks/antiprotonCumulantsMc.cxx:2366:11: style: Same expression used in consecutive assignments of 'fQ112122_110' and 'fQ1141_11'. [duplicateAssignExpression]
PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:634:39: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:661:37: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/EbyEFluctuations/Tasks/eventMeanPtId.cxx:688:37: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:2333:18: style: Variable 'centrality' is reassigned a value before the old one has been used. [redundantAssignment]
PWGCF/EbyEFluctuations/Tasks/kaonIsospinFluctuations.cxx:1326:49: performance: Function parameter 'ParticleList' should be passed by const reference. [passedByValue]
PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:1083:24: style: Local variable 'col' shadows outer variable [shadowVariable]
PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:1168:24: style: Local variable 'col' shadows outer variable [shadowVariable]
PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:1174:15: style: Local variable 'nP' shadows outer variable [shadowVariable]
PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:1175:15: style: Local variable 'nM' shadows outer variable [shadowVariable]
PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:1176:15: style: Local variable 'nCh' shadows outer variable [shadowVariable]
PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:1177:15: style: Local variable 'nT' shadows outer variable [shadowVariable]
PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:1178:15: style: Local variable 'nPr' shadows outer variable [shadowVariable]
PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:1179:15: style: Local variable 'nAPr' shadows outer variable [shadowVariable]
PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:1180:15: style: Local variable 'nKa' shadows outer variable [shadowVariable]
PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:1181:15: style: Local variable 'nAKa' shadows outer variable [shadowVariable]
PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:1182:15: style: Local variable 'nPi' shadows outer variable [shadowVariable]
PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:1183:15: style: Local variable 'nAPi' shadows outer variable [shadowVariable]
PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:1295:22: style: Local variable 'col' shadows outer variable [shadowVariable]
PWGCF/EbyEFluctuations/Tasks/nchCumulantsId.cxx:1396:22: style: Local variable 'col' shadows outer variable [shadowVariable]
PWGCF/EbyEFluctuations/Tasks/netprotcumulants.cxx:1507:11: style: Same expression used in consecutive assignments of 'fQ2122_20' and 'fQ1121_02'. [duplicateAssignExpression]
PWGCF/EbyEFluctuations/Tasks/netprotcumulants.cxx:1537:11: style: Same expression used in consecutive assignments of 'fQ1133_30' and 'fQ1121_30'. [duplicateAssignExpression]
PWGCF/EbyEFluctuations/Tasks/netprotcumulants.cxx:1563:11: style: Same expression used in consecutive assignments of 'fQ112122_110' and 'fQ1141_11'. [duplicateAssignExpression]
PWGCF/EbyEFluctuations/Tasks/netprotcumulants.cxx:2506:11: style: Same expression used in consecutive assignments of 'fQ2122_20' and 'fQ1121_02'. [duplicateAssignExpression]
PWGCF/EbyEFluctuations/Tasks/netprotcumulants.cxx:2536:11: style: Same expression used in consecutive assignments of 'fQ1133_30' and 'fQ1121_30'. [duplicateAssignExpression]
PWGCF/EbyEFluctuations/Tasks/netprotcumulants.cxx:2562:11: style: Same expression used in consecutive assignments of 'fQ112122_110' and 'fQ1141_11'. [duplicateAssignExpression]
PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:1379:11: style: Same expression used in consecutive assignments of 'fQ2122_20' and 'fQ1121_02'. [duplicateAssignExpression]
PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:1409:11: style: Same expression used in consecutive assignments of 'fQ1133_30' and 'fQ1121_30'. [duplicateAssignExpression]
PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:1435:11: style: Same expression used in consecutive assignments of 'fQ112122_110' and 'fQ1141_11'. [duplicateAssignExpression]
PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:2309:11: style: Same expression used in consecutive assignments of 'fQ2122_20' and 'fQ1121_02'. [duplicateAssignExpression]
PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:2339:11: style: Same expression used in consecutive assignments of 'fQ1133_30' and 'fQ1121_30'. [duplicateAssignExpression]
PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx:2365:11: style: Same expression used in consecutive assignments of 'fQ112122_110' and 'fQ1141_11'. [duplicateAssignExpression]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:1955:17: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:2046:26: style: Condition 'isp==kPrAllIdx' is always true [knownConditionTrueFalse]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:2069:26: style: Condition 'isp==kPrAllIdx' is always true [knownConditionTrueFalse]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:2092:26: style: Condition 'isp==kPrAllIdx' is always true [knownConditionTrueFalse]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:2880:26: style: Condition 'isp==kPrAllIdx' is always true [knownConditionTrueFalse]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:3571:26: style: Condition 'isp==kPrAllIdx' is always true [knownConditionTrueFalse]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:1482:17: style: Local variable 'pdg' shadows outer variable [shadowVariable]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:1486:12: style: Variable 'isSpecies' can be declared as const array [constVariable]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:1756:12: style: Variable 'isSpecies' can be declared as const array [constVariable]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:1861:12: style: Variable 'isSpecies' can be declared as const array [constVariable]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:1913:12: style: Variable 'isSpecies' can be declared as const array [constVariable]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:2231:12: style: Variable 'isSpecies' can be declared as const array [constVariable]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:2281:12: style: Variable 'isSpecies' can be declared as const array [constVariable]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:3132:12: style: Variable 'isSpecies' can be declared as const array [constVariable]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:3343:12: style: Variable 'isSpecies' can be declared as const array [constVariable]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:97:26: style: struct member 'RadialFlowDecorr::KEtaAxisMin' is never used. [unusedStructMember]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:98:26: style: struct member 'RadialFlowDecorr::KEtaAxisMax' is never used. [unusedStructMember]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:100:26: style: struct member 'RadialFlowDecorr::KPtResMax' is never used. [unusedStructMember]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:102:26: style: struct member 'RadialFlowDecorr::KEtaResMax' is never used. [unusedStructMember]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:106:26: style: struct member 'RadialFlowDecorr::KVzResMax' is never used. [unusedStructMember]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:109:24: style: struct member 'RadialFlowDecorr::KNbinsDca' is never used. [unusedStructMember]
PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx:110:26: style: struct member 'RadialFlowDecorr::KDcaMax' is never used. [unusedStructMember]
PWGCF/Femto/FemtoNuclei/TableProducer/HadNucleiFemto.cxx:235:20: style: struct member 'HadNucleiFemto::mRecoCollisionIDs' is never used. [unusedStructMember]
PWGCF/Femto3D/Core/femto3dPairTask.h:180:14: warning: Member variable 'FemtoPair::_magfield1' is not assigned a value in 'FemtoPair::operator='. [operatorEqVarError]
PWGCF/Femto3D/Core/femto3dPairTask.h:180:14: warning: Member variable 'FemtoPair::_magfield2' is not assigned a value in 'FemtoPair::operator='. [operatorEqVarError]
PWGCF/Femto3D/Core/femto3dPairTask.h:180:14: warning: Member variable 'FemtoPair::_PDG1' is not assigned a value in 'FemtoPair::operator='. [operatorEqVarError]
PWGCF/Femto3D/Core/femto3dPairTask.h:180:14: warning: Member variable 'FemtoPair::_PDG2' is not assigned a value in 'FemtoPair::operator='. [operatorEqVarError]
PWGCF/Femto3D/Core/femto3dPairTask.h:159:5: performance: Variable '_first' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList]
PWGCF/Femto3D/Core/femto3dPairTask.h:160:5: performance: Variable '_second' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList]
PWGCF/Femto3D/Core/femto3dPairTask.h:164:5: performance: Variable '_first' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList]
PWGCF/Femto3D/Core/femto3dPairTask.h:165:5: performance: Variable '_second' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList]
PWGCF/Femto3D/Core/femto3dPairTask.h:122:44: style: Parameter 'first4momentum' can be declared as reference to const [constParameterReference]
PWGCF/Femto3D/Core/femto3dPairTask.h:122:76: style: Parameter 'second4momentum' can be declared as reference to const [constParameterReference]
PWGCF/Femto3D/Core/femto3dPairTask.h:139:47: style: Parameter 'first4momentum' can be declared as reference to const [constParameterReference]
PWGCF/Femto3D/Core/femto3dPairTask.h:139:79: style: Parameter 'second4momentum' can be declared as reference to const [constParameterReference]
PWGCF/Femto3D/Tasks/femto3dPairTask.cxx:255:17: style: Variable 'suffix' can be declared as const array [constVariable]
PWGCF/FemtoDream/Core/femtoDreamCascadeSelection.h:245:26: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:396:74: performance: Function parameter 'flat' should be passed by const reference. [passedByValue]
PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h:421:84: performance: Function parameter 'qnBinSeparator' should be passed by const reference. [passedByValue]
PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:192:5: warning: Either the condition 'mHistogramRegistry' is redundant or there is possible null pointer dereference: mHistogramRegistry. [nullPointerRedundantCheck]
PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:193:5: warning: Either the condition 'mHistogramRegistry' is redundant or there is possible null pointer dereference: mHistogramRegistry. [nullPointerRedundantCheck]
PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:194:5: warning: Either the condition 'mHistogramRegistry' is redundant or there is possible null pointer dereference: mHistogramRegistry. [nullPointerRedundantCheck]
PWGCF/FemtoDream/Core/femtoDreamContainerThreeBody.h:195:5: warning: Either the condition 'mHistogramRegistry' is redundant or there is possible null pointer dereference: mHistogramRegistry. [nullPointerRedundantCheck]
PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:781:3: warning: Member variable 'FemtoDreamDetaDphiStar::deltaPhiMax' is not initialized. [uninitMemberVarPrivate]
PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:782:3: warning: Member variable 'FemtoDreamDetaDphiStar::deltaEtaMax' is not initialized. [uninitMemberVarPrivate]
PWGCF/FemtoDream/Core/femtoDreamDetaDphiStar.h:783:3: warning: Member variable 'FemtoDreamDetaDphiStar::magfield' is not initialized. [uninitMemberVarPrivate]
PWGCF/FemtoDream/Core/femtoDreamEventHisto.h:26:1: style: The class 'FemtoDreamEventHisto' does not declare a constructor although it has private member variables which likely require initialization. [noConstructor]
PWGCF/FemtoDream/Core/femtoDreamPairCleaner.h:32:1: style: The class 'FemtoDreamPairCleaner' does not declare a constructor although it has private member variables which likely require initialization. [noConstructor]
PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h:825:3: warning: Member variable 'FemtoDreamParticleHisto::mHistogramRegistry' is not initialized. [uninitMemberVarPrivate]
PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h:60:17: performance: Assigning the result of c_str() to a std::string is slow and redundant. [stlcstrAssignment]
PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h:103:17: performance: Assigning the result of c_str() to a std::string is slow and redundant. [stlcstrAssignment]
PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h:211:17: performance: Assigning the result of c_str() to a std::string is slow and redundant. [stlcstrAssignment]
PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h:339:128: performance: Concatenating the result of c_str() and a std::string is slow and redundant. [stlcstrConcat]
PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:74:3: warning: Member variable 'FemtoDreamTrackSelection::nITSclsMin' is not initialized in the constructor. [uninitMemberVar]
PWGCF/FemtoDream/Core/femtoDreamTrackSelection.h:74:3: warning: Member variable 'FemtoDreamTrackSelection::nITSclsIbMin' is not initialized in the constructor. [uninitMemberVar]
PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:261:18: style: Redundant initialization for 'childIDs'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:455:22: style: Redundant initialization for 'childIDs'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:694:22: style: Unused variable: tmpIDtrack [unusedVariable]
PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:852:22: style: Unused variable: tmpIDtrack [unusedVariable]
PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:1014:22: style: Unused variable: tmpIDtrack [unusedVariable]
PWGCF/FemtoDream/TableProducer/femtoDreamProducerTaskForSpecificAnalysis.cxx:1179:22: style: Unused variable: tmpIDtrack [unusedVariable]
PWGCF/FemtoDream/Tasks/femtoDreamCollisionMasker.cxx:129:11: style: Variable 'workflows' can be declared as reference to const [constVariableReference]
PWGCF/FemtoDream/Tasks/femtoDreamCollisionMasker.cxx:125:30: style: Unused variable: MatchedWorkflows [unusedVariable]
PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackTrack.cxx:350:11: style: Variable 'workflows' can be declared as reference to const [constVariableReference]
PWGCF/FemtoDream/Tasks/femtoDreamPairTaskTrackV0.cxx:278:11: style: Variable 'workflows' can be declared as reference to const [constVariableReference]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:415:103: style: Condition 'magFieldTesla1!=magFieldTesla3' is always false [knownConditionTrueFalse]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:447:103: style: Condition 'magFieldTesla1!=magFieldTesla3' is always false [knownConditionTrueFalse]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:477:103: style: Condition 'magFieldTesla1!=magFieldTesla3' is always false [knownConditionTrueFalse]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:513:103: style: Condition 'magFieldTesla1!=magFieldTesla3' is always false [knownConditionTrueFalse]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx:190:11: style: Variable 'workflows' can be declared as reference to const [constVariableReference]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:425:103: style: Condition 'magFieldTesla1!=magFieldTesla3' is always false [knownConditionTrueFalse]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:459:103: style: Condition 'magFieldTesla1!=magFieldTesla3' is always false [knownConditionTrueFalse]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:489:103: style: Condition 'magFieldTesla1!=magFieldTesla3' is always false [knownConditionTrueFalse]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:525:103: style: Condition 'magFieldTesla1!=magFieldTesla3' is always false [knownConditionTrueFalse]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrackPbPb.cxx:198:11: style: Variable 'workflows' can be declared as reference to const [constVariableReference]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:600:103: style: Condition 'magFieldTesla1!=magFieldTesla3' is always false [knownConditionTrueFalse]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:632:105: style: Condition 'magFieldTesla1!=magFieldTesla3' is always false [knownConditionTrueFalse]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:661:105: style: Condition 'magFieldTesla1!=magFieldTesla3' is always false [knownConditionTrueFalse]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:691:103: style: Condition 'magFieldTesla1!=magFieldTesla3' is always false [knownConditionTrueFalse]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:726:105: style: Condition 'magFieldTesla1!=magFieldTesla3' is always false [knownConditionTrueFalse]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:755:105: style: Condition 'magFieldTesla1!=magFieldTesla3' is always false [knownConditionTrueFalse]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0.cxx:257:11: style: Variable 'workflows' can be declared as reference to const [constVariableReference]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:641:103: style: Condition 'magFieldTesla1!=magFieldTesla3' is always false [knownConditionTrueFalse]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:676:105: style: Condition 'magFieldTesla1!=magFieldTesla3' is always false [knownConditionTrueFalse]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:705:105: style: Condition 'magFieldTesla1!=magFieldTesla3' is always false [knownConditionTrueFalse]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:735:103: style: Condition 'magFieldTesla1!=magFieldTesla3' is always false [knownConditionTrueFalse]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:770:105: style: Condition 'magFieldTesla1!=magFieldTesla3' is always false [knownConditionTrueFalse]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:799:105: style: Condition 'magFieldTesla1!=magFieldTesla3' is always false [knownConditionTrueFalse]
PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackV0PbPb.cxx:273:11: style: Variable 'workflows' can be declared as reference to const [constVariableReference]
PWGCF/FemtoDream/Tasks/femtodreamPairCascadeCascade.cxx:212:29: style: struct member 'FemtoDreamPairCascadeCascade::kSignPlusMask' is never used. [unusedStructMember]
PWGCF/FemtoDream/Utils/femtoDreamCutCulator.h:360:32: performance: Function parameter 'choice' should be passed by const reference. [passedByValue]
PWGCF/FemtoDream/Utils/femtoDreamCutCulator.h:265:24: style: Unused variable: out [unusedVariable]
PWGCF/FemtoUniverse/Core/FemtoUniverseCutculator.h:316:32: performance: Function parameter 'choice' should be passed by const reference. [passedByValue]
PWGCF/FemtoUniverse/Core/FemtoUniverseCutculator.h:145:36: style: Variable 'pidValues' can be declared as reference to const [constVariableReference]
PWGCF/FemtoUniverse/Core/FemtoUniverseCutculator.h:151:36: style: Variable 'pidNsigmaValues' can be declared as reference to const [constVariableReference]
PWGCF/FemtoUniverse/Core/FemtoUniverseCutculator.h:222:24: style: Unused variable: out [unusedVariable]
PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:888:3: warning: Member variable 'FemtoUniverseDetaDphiStar::chosenRadii' is not initialized. [uninitMemberVarPrivate]
PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:889:3: warning: Member variable 'FemtoUniverseDetaDphiStar::cutDeltaPhiStarMax' is not initialized. [uninitMemberVarPrivate]
PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:890:3: warning: Member variable 'FemtoUniverseDetaDphiStar::cutDeltaPhiStarMin' is not initialized. [uninitMemberVarPrivate]
PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:891:3: warning: Member variable 'FemtoUniverseDetaDphiStar::cutDeltaEtaMax' is not initialized. [uninitMemberVarPrivate]
PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:892:3: warning: Member variable 'FemtoUniverseDetaDphiStar::cutDeltaEtaMin' is not initialized. [uninitMemberVarPrivate]
PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:904:3: warning: Member variable 'FemtoUniverseDetaDphiStar::magfield' is not initialized. [uninitMemberVarPrivate]
PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:906:3: warning: Member variable 'FemtoUniverseDetaDphiStar::cutPhiInvMassLow' is not initialized. [uninitMemberVarPrivate]
PWGCF/FemtoUniverse/Core/FemtoUniverseDetaDphiStar.h:907:3: warning: Member variable 'FemtoUniverseDetaDphiStar::cutPhiInvMassHigh' is not initialized. [uninitMemberVarPrivate]
PWGCF/FemtoUniverse/Core/FemtoUniverseEventHisto.h:27:1: style: The class 'FemtoUniverseEventHisto' does not declare a constructor although it has private member variables which likely require initialization. [noConstructor]
PWGCF/FemtoUniverse/Core/FemtoUniverseObjectSelection.h:104:16: style: Variable 'sel' can be declared as reference to const [constVariableReference]
PWGCF/FemtoUniverse/Core/FemtoUniversePairAngularWithCentMultKt.h:67:18: style: Local variable 'i' shadows outer variable [shadowVariable]
PWGCF/FemtoUniverse/Core/FemtoUniversePairCleaner.h:35:1: style: The class 'FemtoUniversePairCleaner' does not declare a constructor although it has private member variables which likely require initialization. [noConstructor]
PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:113:32: style: Condition 'cent_mult_value>=centMultBins[0]' is always true [knownConditionTrueFalse]
PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:212:32: style: Condition 'cent_mult_value>=centMultBins[0]' is always true [knownConditionTrueFalse]
PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:65:18: style: Local variable 'i' shadows outer variable [shadowVariable]
PWGCF/FemtoUniverse/Core/FemtoUniversePairWithCentMultKt.h:83:18: style: Local variable 'i' shadows outer variable [shadowVariable]
PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h:577:3: warning: Member variable 'FemtoUniverseParticleHisto::mHistogramRegistry' is not initialized. [uninitMemberVarPrivate]
PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h:60:17: performance: Assigning the result of c_str() to a std::string is slow and redundant. [stlcstrAssignment]
PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h:77:17: performance: Assigning the result of c_str() to a std::string is slow and redundant. [stlcstrAssignment]
PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h:152:17: performance: Assigning the result of c_str() to a std::string is slow and redundant. [stlcstrAssignment]
PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h:512:17: style: Unused variable: tempFitVarName [unusedVariable]
PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h:566:17: style: Unused variable: tempFitVarName [unusedVariable]
PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h:62:1: style: The class 'FemtoUniverseSHContainer' does not declare a constructor although it has private member variables which likely require initialization. [noConstructor]
PWGCF/FemtoUniverse/Core/FemtoUniverseSoftPionRemoval.h:38:1: style: The class 'FemtoUniverseSoftPionRemoval' does not declare a constructor although it has private member variables which likely require initialization. [noConstructor]
PWGCF/FemtoUniverse/Core/FemtoUniverseSoftPionRemoval.h:90:12: style: Local variable 'isSoftPion' shadows outer function [shadowFunction]
PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h:78:3: warning: Member variable 'FemtoUniverseTrackSelection::nTPCsFracMaxSel' is not initialized in the constructor. [uninitMemberVar]
PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h:78:3: warning: Member variable 'FemtoUniverseTrackSelection::nITSclsMin' is not initialized in the constructor. [uninitMemberVar]
PWGCF/FemtoUniverse/Core/FemtoUniverseTrackSelection.h:78:3: warning: Member variable 'FemtoUniverseTrackSelection::nITSclsIbMin' is not initialized in the constructor. [uninitMemberVar]
PWGCF/FemtoUniverse/Core/femtoUtils.h:64:39: performance: Function parameter 'vNsigma' should be passed by const reference. [passedByValue]
PWGCF/FemtoUniverse/Core/femtoUtils.h:88:43: performance: Function parameter 'vNsigma' should be passed by const reference. [passedByValue]
PWGCF/FemtoUniverse/Core/femtoUtils.h:46:108: warning: Either the condition 'it==vNsigma.end()' is redundant or there is possible dereference of an invalid iterator: it. [derefInvalidIteratorRedundantCheck]
PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:428:20: style: Expression is always true because 'else if' condition is opposite to previous condition at line 422. [multiCondition]
PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTask.cxx:2321:22: style: Unused variable: tmpIDtrack [unusedVariable]
PWGCF/FemtoUniverse/TableProducer/femtoUniverseProducerTaskV0Only.cxx:344:21: style: Redundant condition: ConfIsRun3. '!ConfIsRun3 || (ConfIsRun3 && ConfIsMC)' is equivalent to '!ConfIsRun3 || ConfIsMC' [redundantCondition]
PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:355:20: style: Expression is always true because 'else if' condition is opposite to previous condition at line 349. [multiCondition]
PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:406:20: style: Expression is always true because 'else if' condition is opposite to previous condition at line 400. [multiCondition]
PWGCF/FemtoUniverse/Tasks/femtoUniverseEfficiencyBase.cxx:277:47: style: Condition 'partHasTof' is always true [knownConditionTrueFalse]
PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:992:24: style: Local variable 'part' shadows outer variable [shadowVariable]
PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackCascadeExtended.cxx:993:13: style: Local variable 'pdgCode' shadows outer variable [shadowVariable]
PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:408:40: style: Condition 'cfgProcessKtMt3DCF' is always true [knownConditionTrueFalse]
PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:420:40: style: Condition 'cfgProcessKtMt3DCF' is always true [knownConditionTrueFalse]
PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrack3DMultKtExtended.cxx:436:40: style: Condition 'cfgProcessKtMt3DCF' is always true [knownConditionTrueFalse]
PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:90:7: style: struct member 'FemtoUniversePairTaskTrackTrackMcTruth::vPIDPartOne' is never used. [unusedStructMember]
PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:90:20: style: struct member 'FemtoUniversePairTaskTrackTrackMcTruth::vPIDPartTwo' is never used. [unusedStructMember]
PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMcTruth.cxx:91:22: style: struct member 'FemtoUniversePairTaskTrackTrackMcTruth::kNsigma' is never used. [unusedStructMember]
PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:281:12: style: Variable 'nSigmaTPCRanges' can be declared as const array [constVariable]
PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:282:12: style: Variable 'nSigmaTOFRanges' can be declared as const array [constVariable]
PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMultKtExtended.cxx:283:12: style: Variable 'momRanges' can be declared as const array [constVariable]
PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx:1366:27: style: Unused variable: f3d [unusedVariable]
PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:1385:11: style: Variable 'v0DaughPtLowTable' can be declared as const array [constVariable]
PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:1386:11: style: Variable 'v0DaughPtHighTable' can be declared as const array [constVariable]
PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:1455:11: style: Variable 'v0DaughPtLowTable' can be declared as const array [constVariable]
PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackV0Extended.cxx:1456:11: style: Variable 'v0DaughPtHighTable' can be declared as const array [constVariable]
PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:169:3: warning: Member variable 'FemtoWorldDetaDphiStar::deltaPhiMax' is not initialized. [uninitMemberVarPrivate]
PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:170:3: warning: Member variable 'FemtoWorldDetaDphiStar::deltaEtaMax' is not initialized. [uninitMemberVarPrivate]
PWGCF/FemtoWorld/Core/FemtoWorldDetaDphiStar.h:171:3: warning: Member variable 'FemtoWorldDetaDphiStar::magfield' is not initialized. [uninitMemberVarPrivate]
PWGCF/FemtoWorld/Core/FemtoWorldEventHisto.h:27:1: style: The class 'FemtoWorldEventHisto' does not declare a constructor although it has private member variables which likely require initialization. [noConstructor]
PWGCF/FemtoWorld/Core/FemtoWorldPairCleaner.h:35:1: style: The class 'FemtoWorldPairCleaner' does not declare a constructor although it has private member variables which likely require initialization. [noConstructor]
PWGCF/FemtoWorld/Core/FemtoWorldParticleHisto.h:39:1: style: The class 'FemtoWorldParticleHisto' does not declare a constructor although it has private member variables which likely require initialization. [noConstructor]
PWGCF/FemtoWorld/Core/FemtoWorldPhiSelection.h:556:41: style: Expression is always false because 'else if' condition matches previous condition at line 551. [multiCondition]
PWGCF/FemtoWorld/Core/FemtoWorldPhiSelection.h:558:48: style: Expression is always false because 'else if' condition matches previous condition at line 553. [multiCondition]
PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:75:3: warning: Member variable 'FemtoWorldTrackSelection::nITSclsMin' is not initialized in the constructor. [uninitMemberVar]
PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:75:3: warning: Member variable 'FemtoWorldTrackSelection::nITSclsIbMin' is not initialized in the constructor. [uninitMemberVar]
PWGCF/FemtoWorld/Tasks/femtoPairLambdaAntilambda.cxx:159:55: style: Same expression on both sides of '||'. [duplicateExpression]
PWGCF/FemtoWorld/Tasks/femtoPairLambdaAntilambda.cxx:159:125: style: Same expression on both sides of '||'. [duplicateExpression]
PWGCF/FemtoWorld/Tasks/femtoPairLambdaAntilambda.cxx:160:55: style: Same expression on both sides of '||'. [duplicateExpression]
PWGCF/FemtoWorld/Tasks/femtoPairLambdaAntilambda.cxx:160:129: style: Same expression on both sides of '||'. [duplicateExpression]
PWGCF/FemtoWorld/Tasks/femtoPairLambdaAntilambda.cxx:181:81: style: Unused variable: trackHistSpec [unusedVariable]
PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:317:61: style: Parameter 'parts' can be declared as reference to const. However it seems that 'processSameEvent' is a callback function, if 'parts' is declared with const you might also need to cast function pointer(s). [constParameterCallback]
PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:364:62: style: Parameter 'parts' can be declared as reference to const. However it seems that 'processMixedEvent' is a callback function, if 'parts' is declared with const you might also need to cast function pointer(s). [constParameterCallback]
PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:213:9: style: Condition 'fNsigmaTPCTOF' is always true [knownConditionTrueFalse]
PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:233:22: style: Condition 'mom>=0.4' is always true [knownConditionTrueFalse]
PWGCF/Flow/TableProducer/zdcQVectors.cxx:863:11: style: Condition 'isZNAhit' is always true [knownConditionTrueFalse]
PWGCF/Flow/TableProducer/zdcQVectors.cxx:378:13: style: Local variable 'totalTowers' shadows outer variable [shadowVariable]
PWGCF/Flow/TableProducer/zdcQVectors.cxx:392:11: style: Local variable 'ccdb' shadows outer variable [shadowVariable]
PWGCF/Flow/Tasks/flowAnalysisGF.cxx:386:91: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowAnalysisGF.cxx:388:102: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowAnalysisGF.cxx:395:91: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowAnalysisGF.cxx:563:16: style: Variable 'track' can be declared as reference to const [constVariableReference]
PWGCF/Flow/Tasks/flowEsePHe3.cxx:1099:51: style: Same expression on both sides of '-'. [duplicateExpression]
PWGCF/Flow/Tasks/flowEsePHe3.cxx:1100:53: style: Same expression on both sides of '-'. [duplicateExpression]
PWGCF/Flow/Tasks/flowEsePHe3.cxx:1101:53: style: Same expression on both sides of '-'. [duplicateExpression]
PWGCF/Flow/Tasks/flowEsePHe3.cxx:118:9: style: struct member 'ESECandidate::q2Tar' is never used. [unusedStructMember]
PWGCF/Flow/Tasks/flowEsePHe3.cxx:119:9: style: struct member 'ESECandidate::q2Ref' is never used. [unusedStructMember]
PWGCF/Flow/Tasks/flowEsePHe3.cxx:120:9: style: struct member 'ESECandidate::q2FT0C' is never used. [unusedStructMember]
PWGCF/Flow/Tasks/flowEseTask.cxx:477:16: style: Expression is always true because 'else if' condition is opposite to previous condition at line 472. [multiCondition]
PWGCF/Flow/Tasks/flowEseTask.cxx:166:57: style: struct member 'FlowEseTask::kLowQvec' is never used. [unusedStructMember]
PWGCF/Flow/Tasks/flowGfwEse.cxx:615:91: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowGfwEse.cxx:1041:69: performance: Function parameter 'densitycorrections' should be passed by const reference. [passedByValue]
PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx:259:52: style: struct member 'FlowGfwOmegaXi::th3sList' is never used. [unusedStructMember]
PWGCF/Flow/Tasks/flowGfwTask.cxx:814:11: style: Condition 'cfgEvSelkIsGoodITSLayersAll' is always true [knownConditionTrueFalse]
PWGCF/Flow/Tasks/flowGfwTask.cxx:711:91: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowGfwTask.cxx:720:93: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowGfwTask.cxx:728:98: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowGfwTask.cxx:1351:24: style: Local variable 'collision' shadows outer variable [shadowVariable]
PWGCF/Flow/Tasks/flowMc.cxx:336:95: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowMc.cxx:345:95: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowMc.cxx:405:97: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowPbpbPikp.cxx:861:18: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/Flow/Tasks/flowPbpbPikp.cxx:676:95: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowPbpbPikp.cxx:678:104: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowPbpbPikp.cxx:682:94: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowPbpbPikp.cxx:684:103: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowPbpbPikp.cxx:688:94: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowPbpbPikp.cxx:690:103: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowPbpbPikp.cxx:694:94: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowPbpbPikp.cxx:696:103: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowPbpbPikp.cxx:700:94: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowPbpbPikp.cxx:702:103: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowPidCme.cxx:2605:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/Flow/Tasks/flowPidCme.cxx:2614:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/Flow/Tasks/flowPtEfficiency.cxx:463:17: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/Flow/Tasks/flowPtEfficiency.cxx:534:17: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/Flow/Tasks/flowPtEfficiency.cxx:328:97: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowPtEfficiency.cxx:345:95: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowPtEfficiency.cxx:362:95: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowPtEfficiency.cxx:371:95: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowQa.cxx:787:11: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/Flow/Tasks/flowQa.cxx:451:91: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowQa.cxx:460:98: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowQa.cxx:466:78: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowQa.cxx:466:109: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowQa.cxx:473:91: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowRunbyRun.cxx:495:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/Flow/Tasks/flowRunbyRun.cxx:588:11: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/Flow/Tasks/flowRunbyRun.cxx:326:91: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowRunbyRun.cxx:335:98: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowRunbyRun.cxx:341:78: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowRunbyRun.cxx:341:109: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowRunbyRun.cxx:348:91: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowSP.cxx:1059:39: style: Local variable 'Time' shadows outer variable [shadowVariable]
PWGCF/Flow/Tasks/flowSP.cxx:1165:39: style: Local variable 'Time' shadows outer variable [shadowVariable]
PWGCF/Flow/Tasks/flowSP.cxx:1207:39: style: Local variable 'Time' shadows outer variable [shadowVariable]
PWGCF/Flow/Tasks/flowSP.cxx:1244:39: style: Local variable 'Time' shadows outer variable [shadowVariable]
PWGCF/Flow/Tasks/flowTask.cxx:1426:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/Flow/Tasks/flowTask.cxx:1429:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/Flow/Tasks/flowTask.cxx:1517:11: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/Flow/Tasks/flowTask.cxx:873:101: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowTask.cxx:882:101: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowTask.cxx:889:107: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowTask.cxx:896:111: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowTask.cxx:904:114: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/flowTask.cxx:911:116: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:1299:37: style: Same expression on both sides of '-'. [duplicateExpression]
PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:294:52: style: struct member 'PidFlowPtCorr::th1sList' is never used. [unusedStructMember]
PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:295:52: style: struct member 'PidFlowPtCorr::th3sList' is never used. [unusedStructMember]
PWGCF/Flow/Tasks/pidFlowPtCorr.cxx:354:5: style: struct member 'PidFlowPtCorr::debugHist' is never used. [unusedStructMember]
PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:1266:18: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:766:94: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:768:103: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:772:98: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:774:107: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:778:95: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:780:104: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:784:100: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:786:109: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:790:95: style: C-style pointer casting [cstyleCast]
PWGCF/Flow/Tasks/resonancesGfwFlow.cxx:792:104: style: C-style pointer casting [cstyleCast]
PWGCF/GenericFramework/Core/FlowContainer.cxx:250:10: warning: fscanf() without field width limits can crash with huge input data. [invalidscanf]
PWGCF/GenericFramework/Core/FlowContainer.cxx:258:19: warning: fscanf() without field width limits can crash with huge input data. [invalidscanf]
PWGCF/GenericFramework/Core/FlowContainer.cxx:1201:3: style: Statements following 'return' will never be executed. [unreachableCode]
PWGCF/GenericFramework/Core/FlowContainer.cxx:1201:7: style: Local variable 'fPtRebin' shadows outer variable [shadowVariable]
PWGCF/GenericFramework/Core/FlowContainer.cxx:189:11: style: Variable 'sumw2Targ' can be declared as pointer to const [constVariablePointer]
PWGCF/GenericFramework/Core/FlowContainer.cxx:191:11: style: Variable 'binsw2Targ' can be declared as pointer to const [constVariablePointer]
PWGCF/GenericFramework/Core/FlowPtContainer.cxx:161:12: style: Local variable 'm' shadows outer argument [shadowArgument]
PWGCF/GenericFramework/Core/FlowPtContainer.cxx:164:12: style: Local variable 'm' shadows outer argument [shadowArgument]
PWGCF/GenericFramework/Core/FlowPtContainer.cxx:174:17: style: Local variable 'm' shadows outer argument [shadowArgument]
PWGCF/GenericFramework/Core/FlowPtContainer.cxx:251:12: style: Local variable 'm' shadows outer argument [shadowArgument]
PWGCF/GenericFramework/Core/FlowPtContainer.cxx:254:12: style: Local variable 'm' shadows outer argument [shadowArgument]
PWGCF/GenericFramework/Core/FlowPtContainer.cxx:264:17: style: Local variable 'm' shadows outer argument [shadowArgument]
PWGCF/GenericFramework/Core/FlowPtContainer.cxx:339:12: style: Local variable 'm' shadows outer argument [shadowArgument]
PWGCF/GenericFramework/Core/FlowPtContainer.cxx:342:12: style: Local variable 'm' shadows outer argument [shadowArgument]
PWGCF/GenericFramework/Core/FlowPtContainer.cxx:352:17: style: Local variable 'm' shadows outer argument [shadowArgument]
PWGCF/GenericFramework/Core/FlowPtContainer.cxx:459:14: style: Local variable 'm' shadows outer argument [shadowArgument]
PWGCF/GenericFramework/Core/FlowPtContainer.cxx:465:12: style: Local variable 'm' shadows outer argument [shadowArgument]
PWGCF/GenericFramework/Core/FlowPtContainer.cxx:530:14: style: Local variable 'm' shadows outer argument [shadowArgument]
PWGCF/GenericFramework/Core/FlowPtContainer.cxx:536:12: style: Local variable 'm' shadows outer argument [shadowArgument]
PWGCF/GenericFramework/Core/FlowPtContainer.cxx:600:14: style: Local variable 'm' shadows outer argument [shadowArgument]
PWGCF/GenericFramework/Core/FlowPtContainer.cxx:606:12: style: Local variable 'm' shadows outer argument [shadowArgument]
PWGCF/GenericFramework/Core/GFW.cxx:179:32: style: Condition 's_index(config," (")>-1' is always true [knownConditionTrueFalse]
PWGCF/GenericFramework/Core/GFW.cxx:182:32: style: Condition 's_index(config," ")>-1' is always true [knownConditionTrueFalse]
PWGCF/GenericFramework/Core/GFW.cxx:205:19: style: Condition 's_contains(ts,"(")' is always true [knownConditionTrueFalse]
PWGCF/GenericFramework/Core/GFW.cxx:206:11: style: Condition '!s_contains(ts,")")' is always false [knownConditionTrueFalse]
PWGCF/GenericFramework/Core/GFW.cxx:227:34: style: Assigned value 's_contains(ts2,"|")' is always true [knownConditionTrueFalse]
PWGCF/GenericFramework/Core/GFW.cxx:228:11: style: Condition 'isOverlap' is always true [knownConditionTrueFalse]
PWGCF/GenericFramework/Core/GFW.cxx:360:35: style: Return value 's_index(instr,pattern)>-1' is always true [knownConditionTrueFalse]
PWGCF/GenericFramework/Core/GFW.cxx:365:12: style: Condition 'lpos<0' is always false [knownConditionTrueFalse]
PWGCF/GenericFramework/Core/GFW.cxx:385:12: style: Condition 'lpos<0' is always false [knownConditionTrueFalse]
PWGCF/GenericFramework/Core/GFW.cxx:34:28: performance: Function parameter 'refName' should be passed by const reference. [passedByValue]
PWGCF/GenericFramework/Core/GFW.cxx:59:28: performance: Function parameter 'refName' should be passed by const reference. [passedByValue]
PWGCF/GenericFramework/Core/GFW.cxx:59:49: performance: Function parameter 'lNparVec' should be passed by const reference. [passedByValue]
PWGCF/GenericFramework/Core/GFW.cxx:66:28: performance: Function parameter 'refName' should be passed by const reference. [passedByValue]
PWGCF/GenericFramework/Core/GFW.cxx:73:28: performance: Function parameter 'refName' should be passed by const reference. [passedByValue]
PWGCF/GenericFramework/Core/GFW.cxx:172:64: performance: Function parameter 'head' should be passed by const reference. [passedByValue]
PWGCF/GenericFramework/Core/GFW.cxx:346:34: performance: Function parameter 'refName' should be passed by const reference. [passedByValue]
PWGCF/GenericFramework/Core/GFW.cxx:354:26: style: Parameter 'instr' can be declared as reference to const [constParameterReference]
PWGCF/GenericFramework/Core/GFW.cxx:184:15: style: Unused variable: regs [unusedVariable]
PWGCF/GenericFramework/Core/GFW.cxx:185:15: style: Unused variable: hars [unusedVariable]
PWGCF/GenericFramework/Core/GFW.h:74:25: performance: Function parameter 'inreg' should be passed by const reference. [passedByValue]
PWGCF/GenericFramework/Core/GFWConfig.h:56:3: style: Class 'GFWBinningCuts' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGCF/GenericFramework/Core/GFWConfig.h:147:3: style: Class 'GFWRegions' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGCF/GenericFramework/Core/GFWConfig.h:192:3: style: Class 'GFWCorrConfigs' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGCF/GenericFramework/Core/GFWCumulant.cxx:99:71: performance: Function parameter 'PowVec' should be passed by const reference. [passedByValue]
PWGCF/GenericFramework/Core/GFWPowerArray.cxx:34:38: performance: Function parameter 'hars' should be passed by const reference. [passedByValue]
PWGCF/GenericFramework/Core/GFWPowerArray.cxx:40:42: performance: Function parameter 'hars' should be passed by const reference. [passedByValue]
PWGCF/GenericFramework/Core/GFWPowerArray.cxx:57:68: performance: Function parameter 'hars' should be passed by const reference. [passedByValue]
PWGCF/GenericFramework/Core/GFWPowerArray.cxx:75:52: performance: Function parameter 'inHarmonics' should be passed by const reference. [passedByValue]
PWGCF/GenericFramework/Core/GFWPowerArray.cxx:80:15: performance: Range variable 'singleSet' should be declared as const reference. [iterateByValue]
PWGCF/GenericFramework/Core/GFWPowerArray.cxx:87:15: performance: Range variable 'singleSet' should be declared as const reference. [iterateByValue]
PWGCF/GenericFramework/Core/GFWPowerArray.cxx:110:15: performance: Range variable 'inSet' should be declared as const reference. [iterateByValue]
PWGCF/GenericFramework/Core/GFWPowerArray.cxx:50:14: style: Variable 'val' can be declared as reference to const [constVariableReference]
PWGCF/GenericFramework/Core/GFWWeights.cxx:232:7: style: Condition 'IntegrateOverCentAndPt' is always true [knownConditionTrueFalse]
PWGCF/GenericFramework/Core/GFWWeights.cxx:286:7: style: Condition 'IntegrateOverCentrality' is always true [knownConditionTrueFalse]
PWGCF/GenericFramework/Core/GFWWeights.cxx:305:10: warning: fscanf() without field width limits can crash with huge input data. [invalidscanf]
PWGCF/GenericFramework/Core/GFWWeights.cxx:329:19: warning: fscanf() without field width limits can crash with huge input data. [invalidscanf]
PWGCF/GenericFramework/Core/GFWWeightsList.cxx:159:14: style: Variable 'type' can be declared as reference to const [constVariableReference]
PWGCF/GenericFramework/Core/GFWWeightsList.cxx:195:19: style: Variable 'lWeight' can be declared as pointer to const [constVariablePointer]
PWGCF/GenericFramework/Core/GFWWeightsList.h:51:16: style: Variable 'el' can be declared as reference to const [constVariableReference]
PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:525:70: style: Condition 'cfgUseNch' is always true [knownConditionTrueFalse]
PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:916:93: style: C-style pointer casting [cstyleCast]
PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx:1941:84: performance: Function parameter 'densitycorrections' should be passed by const reference. [passedByValue]
PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:397:58: style: Condition 'cfgUseNch' is always true [knownConditionTrueFalse]
PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:664:91: style: C-style pointer casting [cstyleCast]
PWGCF/GenericFramework/Tasks/flowGfwLightIons.cxx:1162:69: performance: Function parameter 'densitycorrections' should be passed by const reference. [passedByValue]
PWGCF/GenericFramework/Tasks/flowGfwV02.cxx:612:91: style: C-style pointer casting [cstyleCast]
PWGCF/GenericFramework/Tasks/flowGfwV02.cxx:622:113: style: C-style pointer casting [cstyleCast]
PWGCF/GenericFramework/Tasks/flowGfwV02.cxx:879:12: style: struct member 'XAxis::time' is never used. [unusedStructMember]
PWGCF/JCorran/Core/FlowJSPCAnalysis.h:39:3: warning: Member variable 'FlowJSPCAnalysis::qvecs' is not initialized in the constructor. [uninitMemberVar]
PWGCF/JCorran/Core/FlowJSPCAnalysis.h:39:3: warning: Member variable 'FlowJSPCAnalysis::fHarmosArray' is not initialized in the constructor. [uninitMemberVar]
PWGCF/JCorran/Core/FlowJSPCAnalysis.h:39:3: warning: Member variable 'FlowJSPCAnalysis::fCorrelDenoms' is not initialized in the constructor. [uninitMemberVar]
PWGCF/JCorran/Core/FlowJSPCAnalysis.h:70:35: style: Parameter 'harmo' can be declared as const array [constParameter]
PWGCF/JCorran/Core/FlowJSPCAnalysis.h:76:27: style: Parameter 'harmo' can be declared as const array [constParameter]
PWGCF/JCorran/Core/FlowJSPCObservables.h:41:13: style: Variable 'harmonicArray01' can be declared as const array [constVariable]
PWGCF/JCorran/Core/FlowJSPCObservables.h:59:13: style: Variable 'harmonicArray02' can be declared as const array [constVariable]
PWGCF/JCorran/Core/FlowJSPCObservables.h:76:13: style: Variable 'harmonicArray03' can be declared as const array [constVariable]
PWGCF/JCorran/Core/FlowJSPCObservables.h:93:13: style: Variable 'harmonicArray04' can be declared as const array [constVariable]
PWGCF/JCorran/Core/JEPFlowAnalysis.h:30:3: warning: Member variable 'JEPFlowAnalysis::mHistRegistry' is not initialized in the constructor. [uninitMemberVar]
PWGCF/JCorran/Core/JFFlucAnalysis.cxx:24:17: warning: Member variable 'JFFlucAnalysis::ph1' is not initialized in the constructor. [uninitMemberVar]
PWGCF/JCorran/Core/JFFlucAnalysis.cxx:24:17: warning: Member variable 'JFFlucAnalysis::pht' is not initialized in the constructor. [uninitMemberVar]
PWGCF/JCorran/Core/JFFlucAnalysis.cxx:24:17: warning: Member variable 'JFFlucAnalysis::phs' is not initialized in the constructor. [uninitMemberVar]
PWGCF/JCorran/Core/JFFlucAnalysis.cxx:38:17: warning: Member variable 'JFFlucAnalysis::ph1' is not initialized in the constructor. [uninitMemberVar]
PWGCF/JCorran/Core/JFFlucAnalysis.cxx:38:17: warning: Member variable 'JFFlucAnalysis::pht' is not initialized in the constructor. [uninitMemberVar]
PWGCF/JCorran/Core/JFFlucAnalysis.cxx:38:17: warning: Member variable 'JFFlucAnalysis::phs' is not initialized in the constructor. [uninitMemberVar]
PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:437:11: style: Local variable 'cent' shadows outer variable [shadowVariable]
PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx:478:11: style: Local variable 'cent' shadows outer variable [shadowVariable]
PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:54:14: warning: Struct 'jflucAnalysisTask' does not have a copy constructor which is recommended since it has dynamic memory/resource management. [noCopyConstructor]
PWGCF/JCorran/Tasks/jflucAnalysisTask.cxx:54:14: warning: Struct 'jflucAnalysisTask' does not have a operator= which is recommended since it has dynamic memory/resource management. [noOperatorEq]
PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:87:14: warning: Struct 'JflucWeightsLoader' does not have a copy constructor which is recommended since it has dynamic memory/resource management. [noCopyConstructor]
PWGCF/JCorran/Tasks/jflucWeightsLoader.cxx:87:14: warning: Struct 'JflucWeightsLoader' does not have a operator= which is recommended since it has dynamic memory/resource management. [noOperatorEq]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:2065:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:3733:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:13390:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:14500:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:19890:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:20036:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:1223:18: warning: Either the condition '!oa' is redundant or there is possible null pointer dereference: oa. [nullPointerRedundantCheck]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:1428:58: warning: Either the condition '!oa' is redundant or there is possible null pointer dereference: oa. [nullPointerRedundantCheck]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:2073:18: warning: Either the condition '!oa' is redundant or there is possible null pointer dereference: oa. [nullPointerRedundantCheck]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:14704:5: warning: Either the condition '!hist' is redundant or there is possible null pointer dereference: hist. [nullPointerRedundantCheck]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:14705:5: warning: Either the condition '!hist' is redundant or there is possible null pointer dereference: hist. [nullPointerRedundantCheck]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:14735:29: warning: Either the condition '!hist' is redundant or there is possible null pointer dereference: hist. [nullPointerRedundantCheck]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:14739:20: warning: Either the condition '!oa' is redundant or there is possible null pointer dereference: oa. [nullPointerRedundantCheck]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:14783:45: warning: Either the condition '!hist' is redundant or there is possible null pointer dereference: hist. [nullPointerRedundantCheck]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:15008:3: warning: Either the condition '!sparseHist' is redundant or there is possible null pointer dereference: sparseHist. [nullPointerRedundantCheck]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:15062:63: warning: Either the condition '!sparseHist' is redundant or there is possible null pointer dereference: sparseHist. [nullPointerRedundantCheck]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:15265:3: warning: Either the condition '!hist' is redundant or there is possible null pointer dereference: hist. [nullPointerRedundantCheck]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:15266:3: warning: Either the condition '!hist' is redundant or there is possible null pointer dereference: hist. [nullPointerRedundantCheck]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:14687:14: style: Redundant initialization for 'histName'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:14970:20: style: Redundant initialization for 'sparseHistName'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:15242:12: style: Redundant initialization for 'histName'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:9825:7: style: Consecutive return, break, continue, goto or throw statements are unnecessary. [duplicateBreak]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:9832:7: style: Consecutive return, break, continue, goto or throw statements are unnecessary. [duplicateBreak]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:9837:7: style: Consecutive return, break, continue, goto or throw statements are unnecessary. [duplicateBreak]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:9842:7: style: Consecutive return, break, continue, goto or throw statements are unnecessary. [duplicateBreak]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:11437:7: style: Consecutive return, break, continue, goto or throw statements are unnecessary. [duplicateBreak]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:11444:7: style: Consecutive return, break, continue, goto or throw statements are unnecessary. [duplicateBreak]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:11449:7: style: Consecutive return, break, continue, goto or throw statements are unnecessary. [duplicateBreak]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:11454:7: style: Consecutive return, break, continue, goto or throw statements are unnecessary. [duplicateBreak]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:5848:11: style: Local variable 'dim1' shadows outer variable [shadowVariable]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:5852:11: style: Local variable 'dim4' shadows outer variable [shadowVariable]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:7294:15: style: Local variable 'v2' shadows outer variable [shadowVariable]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:14575:12: style: Variable 'alien' can be declared as pointer to const [constVariablePointer]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:14865:12: style: Variable 'alien' can be declared as pointer to const [constVariablePointer]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:15125:12: style: Variable 'alien' can be declared as pointer to const [constVariablePointer]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:15616:12: style: Variable 'alien' can be declared as pointer to const [constVariablePointer]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:15775:12: style: Variable 'alien' can be declared as pointer to const [constVariablePointer]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:14410:17: performance: Inefficient usage of string::find() in condition; string::starts_with() could be faster. [stlIfStrFind]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:14221:3: warning: Null pointer dereference: hist [ctunullpointer]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:14266:3: warning: Null pointer dereference: hist [ctunullpointer]
PWGCF/MultiparticleCorrelations/Core/MuPa-MemberFunctions.h:14459:3: warning: Null pointer dereference: hist [ctunullpointer]
PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:827:46: performance: Function parameter 'AzimuthalAngles' should be passed by const reference. [passedByValue]
PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:827:83: performance: Function parameter 'Weights' should be passed by const reference. [passedByValue]
PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:770:16: style: Variable 'track' can be declared as reference to const [constVariableReference]
PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:641:17: style: Unused variable: corName [unusedVariable]
PWGCF/TableProducer/dptDptFilter.h:565:5: warning: Struct 'DptDptTrackSelection' does not have a copy constructor which is recommended since it has dynamic memory/resource management. [noCopyConstructor]
PWGCF/TableProducer/dptDptFilter.h:565:5: warning: Struct 'DptDptTrackSelection' does not have a operator= which is recommended since it has dynamic memory/resource management. [noOperatorEq]
PWGCF/TableProducer/dptDptFilter.h:1461:34: style: Assigned value 'triggerSelection(collision)' is always false [knownConditionTrueFalse]
PWGCF/TableProducer/dptDptFilter.h:1480:41: style: Assigned value 'occupancySelection(collision)' is always false [knownConditionTrueFalse]
PWGCF/TableProducer/dptDptFilter.h:1497:41: style: Assigned value 'centralitySelection(collision,centormult)' is always false [knownConditionTrueFalse]
PWGCF/TableProducer/dptDptFilter.h:1503:7: style: Condition 'accepted' is always false [knownConditionTrueFalse]
PWGCF/TableProducer/dptDptFilter.h:1563:9: style: Consecutive return, break, continue, goto or throw statements are unnecessary. [duplicateBreak]
PWGCF/TableProducer/dptDptFilter.h:838:34: style: Parameter 'ccdb' can be declared as reference to const [constParameterReference]
PWGCF/TableProducer/dptDptFilter.h:1329:83: style: Parameter 'centmult' can be declared as reference to const [constParameterReference]
PWGCF/TableProducer/dptDptFilter.h:1838:29: style: Parameter 'values' can be declared as reference to const [constParameterReference]
PWGCF/TableProducer/dptDptFilter.h:1838:43: style: Parameter 'mindet' can be declared as reference to const [constParameterReference]
PWGCF/TableProducer/dptDptFilter.h:1838:57: style: Parameter 'maxdet' can be declared as reference to const [constParameterReference]
PWGCF/TableProducer/dptDptFilter.h:1845:31: style: Parameter 'values' can be declared as reference to const [constParameterReference]
PWGCF/TableProducer/dptDptFilter.h:1845:45: style: Parameter 'mindet' can be declared as reference to const [constParameterReference]
PWGCF/TableProducer/dptDptFilter.h:1845:59: style: Parameter 'maxdet' can be declared as reference to const [constParameterReference]
PWGCF/TableProducer/dptDptFilter.h:1891:37: style: Parameter 'config' can be declared as reference to const [constParameterReference]
PWGCF/Tasks/correlations.cxx:822:120: style: C-style pointer casting [cstyleCast]
PWGCF/Tasks/correlations.cxx:834:126: style: C-style pointer casting [cstyleCast]
PWGCF/Tasks/dptDptCorrelations.cxx:1583:19: style: Condition 'logcomb<kNoOfLoggingCombinations' is always true [knownConditionTrueFalse]
PWGCF/Tasks/dptDptCorrelations.cxx:1614:19: style: Condition 'logcomb<kNoOfLoggingCombinations' is always true [knownConditionTrueFalse]
PWGCF/Tasks/dptDptCorrelations.cxx:355:44: performance: Function parameter 'ptavgs' should be passed by const reference. [passedByValue]
PWGCF/Tasks/dptDptCorrelations.cxx:1252:40: style: Parameter 'ptavgs' can be declared as reference to const [constParameterReference]
PWGCF/Tasks/dptDptCorrelations.cxx:1259:46: style: Parameter 'corrs' can be declared as reference to const [constParameterReference]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:428:16: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:432:18: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:333:13: style: Local variable 'cutregex' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:334:19: style: Local variable 'in' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:335:14: style: Local variable 'm' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:336:12: style: Local variable 'res' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:41:81: performance: Function parameter 'bfieldsel' should be passed by const reference. [passedByValue]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:52:57: performance: Function parameter 'selname' should be passed by const reference. [passedByValue]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:144:53: performance: Function parameter 'str' should be passed by const reference. [passedByValue]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:86:16: style: Variable 'pol' can be declared as reference to const [constVariableReference]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:45:3: style: Class 'EventSelectionConfigurable' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:97:18: style: The function 'initialize' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:100:18: style: The function 'Filter' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:103:18: style: The function 'initialize' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:105:18: style: The function 'Filter' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:182:34: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:187:36: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:187:12: style: Local variable 'acc' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:49:42: performance: Function parameter 'pileuprej' should be passed by const reference. However it seems that 'EventSelectionConfigurable' is a callback function. [passedByValueCallback]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:112:7: style: Virtual function 'CalculateMaskLength' is called from constructor 'EventSelectionFilterAndAnalysis(const TString&,selmodes)' at line 129. Dynamic binding is not used. [virtualCallInConstructor]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:112:7: style: Virtual function 'CalculateMaskLength' is called from constructor 'EventSelectionFilterAndAnalysis(const EventSelectionConfigurable&,selmodes)' at line 161. Dynamic binding is not used. [virtualCallInConstructor]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:113:16: style: Virtual function 'StoreArmedMask' is called from constructor 'EventSelectionFilterAndAnalysis(const EventSelectionConfigurable&,selmodes)' at line 167. Dynamic binding is not used. [virtualCallInConstructor]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:255:13: style: Local variable 'cutregex' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:256:19: style: Local variable 'in' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:257:14: style: Local variable 'm' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:258:12: style: Local variable 'res' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:62:57: performance: Function parameter 'selname' should be passed by const reference. [passedByValue]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:154:53: performance: Function parameter 'str' should be passed by const reference. [passedByValue]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:264:49: performance: Function parameter 'detector' should be passed by const reference. [passedByValue]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:264:87: performance: Function parameter 'cut' should be passed by const reference. [passedByValue]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:54:3: style: Class 'PIDSelectionConfigurable' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:55:148: performance: Function parameter 'pidtofpr' should be passed by const reference. However it seems that 'PIDSelectionConfigurable' is a callback function. [passedByValueCallback]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:135:15: style: Virtual function 'CalculateMaskLength' is called from constructor 'PIDSelectionFilterAndAnalysis(const TString&,selmodes)' at line 138. Dynamic binding is not used. [virtualCallInConstructor]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:135:15: style: Virtual function 'CalculateMaskLength' is called from constructor 'PIDSelectionFilterAndAnalysis(const PIDSelectionConfigurable&pidsel,selmodes mode)' at line 187. Dynamic binding is not used. [virtualCallInConstructor]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:136:16: style: Virtual function 'StoreArmedMask' is called from constructor 'PIDSelectionFilterAndAnalysis(const PIDSelectionConfigurable&pidsel,selmodes mode)' at line 193. Dynamic binding is not used. [virtualCallInConstructor]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:681:9: style: Condition 'first' is always true [knownConditionTrueFalse]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:953:32: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:962:32: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:993:30: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:997:30: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:1012:16: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:1015:16: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:1031:34: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:113:3: style: Class 'CutBrickLimit' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:157:3: style: Class 'CutBrickFnLimit' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:184:3: style: Class 'CutBrickThreshold' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:228:3: style: Class 'CutBrickFnThreshold' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:255:3: style: Class 'CutBrickRange' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:300:3: style: Class 'CutBrickFnRange' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:329:3: style: Class 'CutBrickExtToRange' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:374:3: style: Class 'CutBrickFnExtToRange' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:405:3: style: Class 'CutBrickSelectorMultipleRanges' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:435:3: style: Class 'CutWithVariations' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:513:3: style: Class 'TrackSelectionBrick' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:232:16: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:235:16: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:361:12: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:366:12: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:371:12: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:376:12: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:381:12: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:386:12: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:391:12: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:396:12: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:440:16: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:445:16: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:337:13: style: Local variable 'cutregex' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:338:19: style: Local variable 'in' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:339:14: style: Local variable 'm' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:340:12: style: Local variable 'res' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:39:81: performance: Function parameter 'ttype' should be passed by const reference. [passedByValue]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:62:57: performance: Function parameter 'selname' should be passed by const reference. [passedByValue]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:194:55: performance: Function parameter 'str' should be passed by const reference. [passedByValue]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:96:16: style: Variable 'type' can be declared as reference to const [constVariableReference]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:43:3: style: Class 'TrackSelectionConfigurable' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:166:22: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:169:21: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:53:42: performance: Function parameter 'etarange' should be passed by const reference. However it seems that 'TrackSelectionConfigurable' is a callback function. [passedByValueCallback]
PWGCF/TwoParticleCorrelations/TableProducer/longrangeMaker.cxx:567:12: style: Local variable 'multiplicity' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Tasks/Lambdacascadecorrelation.cxx:788:11: style: Local variable 'rap' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Tasks/Lambdacascadecorrelation.cxx:910:11: style: Local variable 'rap' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Tasks/Lambdacascadecorrelation.cxx:1156:11: style: Local variable 'rap' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:898:91: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:905:97: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:334:20: style: Local variable 'axisPhi' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:335:20: style: Local variable 'axisEta' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:329:38: style: struct member 'CorrSparse::eventCuts' is never used. [unusedStructMember]
PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:177:25: style: struct member 'Anonymous5::multT0CCutPars' is never used. [unusedStructMember]
PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:178:25: style: struct member 'Anonymous5::multPVT0CCutPars' is never used. [unusedStructMember]
PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:179:25: style: struct member 'Anonymous5::multGlobalPVCutPars' is never used. [unusedStructMember]
PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx:180:25: style: struct member 'Anonymous5::multMultV0ACutPars' is never used. [unusedStructMember]
PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:428:91: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx:435:97: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:517:16: style: Local variable 'fillhisto' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:882:50: style: struct member 'PidExtraDataCollectingEngine::fhIdTPCdEdxSignalDiffVsP' is never used. [unusedStructMember]
PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:886:50: style: struct member 'PidExtraDataCollectingEngine::fhIdTOFSignalDiffVsP' is never used. [unusedStructMember]
PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:888:37: style: struct member 'PidExtraDataCollectingEngine::fhIdPvsTOFSqMass' is never used. [unusedStructMember]
PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx:1183:19: style: Unused variable: recogen [unusedVariable]
PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunExtraQc.cxx:60:237: performance: Searching before insertion is not necessary. Instead of 'gRunMapPvsTpcIwP[mRunNumber]=mHistos.add<TProfile3D>(TString::Format("Reco/%d_pVsTpcIwP",mRunNumber).Data(),";species;p (GeV/#it{c}); p_{tpciw} (GeV/#it{c})",{HistType::kTProfile3D,{{10,-0.5,9.5},qaPAxis,qaPAxis}}).get()' consider using 'gRunMapPvsTpcIwP.try_emplace(mRunNumber, mHistos.add<TProfile3D>(TString::Format("Reco/%d_pVsTpcIwP",mRunNumber).Data(),";species;p (GeV/#it{c}); p_{tpciw} (GeV/#it{c})",{HistType::kTProfile3D,{{10,-0.5,9.5},qaPAxis,qaPAxis}}).get());'. [stlFindInsert]
PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:427:91: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Tasks/etaDihadron.cxx:434:97: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:1097:62: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:1108:63: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:1120:64: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:1132:64: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:674:91: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:681:97: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:286:20: style: Local variable 'axisEta' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:259:24: style: struct member 'FlowDecorrelation::tofNsigmaCut' is never used. [unusedStructMember]
PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:260:24: style: struct member 'FlowDecorrelation::itsNsigmaCut' is never used. [unusedStructMember]
PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx:261:24: style: struct member 'FlowDecorrelation::tpcNsigmaCut' is never used. [unusedStructMember]
PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:829:11: style: Local variable 'rap' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:951:11: style: Local variable 'rap' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Tasks/lambdaSpinPolarization.cxx:1355:11: style: Local variable 'rap' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:716:91: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:723:97: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:728:109: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:549:22: style: Local variable 'axisFit' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx:550:22: style: Local variable 'axisChID' shadows outer variable [shadowVariable]
PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:420:92: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx:435:93: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Tasks/nucleibalance.cxx:701:120: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Tasks/nucleibalance.cxx:713:126: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:742:91: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Tasks/pidDiHadron.cxx:750:97: style: C-style pointer casting [cstyleCast]
PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:386:46: style: Condition 'fillCollision(mixed,multiplicity)==false' is always false [knownConditionTrueFalse]
PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx:411:43: style: Condition 'fillCollision(same,multiplicity)==false' is always false [knownConditionTrueFalse]
PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:238:50: performance: Function parameter 'corrs' should be passed by const reference. [passedByValue]
PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:245:44: performance: Function parameter 'ptavgs' should be passed by const reference. [passedByValue]
PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:418:60: performance: Function parameter 'idnames' should be passed by const reference. [passedByValue]
PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelations.cxx:428:17: performance: Range variable 'id' should be declared as const reference. [iterateByValue]
PWGDQ/Core/AnalysisCompositeCut.h:31:3: style: Class 'AnalysisCompositeCut' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGDQ/Core/AnalysisCompositeCut.h:40:36: warning: Potentially invalid type conversion in old-style C cast, clarify/fix with C++ cast [dangerousTypeCast]
PWGDQ/Core/CutsLibrary.cxx:508:7: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGDQ/Core/CutsLibrary.cxx:4134:7: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGDQ/Core/CutsLibrary.cxx:4522:7: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGDQ/Core/CutsLibrary.cxx:7129:7: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGDQ/Core/CutsLibrary.cxx:7699:13: style: The statement 'if (!cutDirsFilled) cutDirsFilled=true' is logically equivalent to 'cutDirsFilled=true'. [duplicateConditionalAssign]
PWGDQ/Core/DQMlResponse.h:109:33: style: Parameter 'type' can be declared as reference to const [constParameterReference]
PWGDQ/Core/HistogramsLibrary.cxx:1309:16: style: Local variable 'massBins' shadows outer variable [shadowVariable]
PWGDQ/Core/HistogramsLibrary.cxx:2644:13: style: Local variable 'iDim' shadows outer variable [shadowVariable]
PWGDQ/Core/HistogramsLibrary.cxx:2660:13: style: Local variable 'iDim' shadows outer variable [shadowVariable]
PWGDQ/Core/HistogramsLibrary.cxx:2675:13: style: Local variable 'iDim' shadows outer variable [shadowVariable]
PWGDQ/Core/MCSignal.h:70:3: style: Class 'MCSignal' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGDQ/Core/MCSignalLibrary.cxx:1741:7: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGDQ/Core/MCSignalLibrary.cxx:2337:16: style: Variable 's' can be declared as reference to const [constVariableReference]
PWGDQ/Core/MuonMatchingMlResponse.h:189:3: warning: Member variable 'MlResponseMFTMuonMatch::mCachedIndexBinning' is not initialized in the constructor. [uninitMemberVar]
PWGDQ/Core/VarManager.h:1924:32: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:1939:23: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:1951:23: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:1954:23: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:1957:29: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:1960:35: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:1963:36: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:1966:35: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:1969:33: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:1972:23: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:1975:23: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:1978:24: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:1981:24: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2062:28: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2063:29: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2064:29: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2065:28: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2066:24: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2069:29: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2087:33: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2090:31: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2093:29: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2096:42: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2099:30: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2102:32: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2105:34: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2108:31: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2111:35: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2114:23: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2126:23: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2129:23: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2132:29: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2135:35: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2138:36: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2141:35: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2144:33: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2147:23: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2150:23: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2153:24: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2156:24: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2354:26: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2355:27: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2356:27: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2357:26: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2358:22: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2359:27: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2788:48: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2825:27: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2828:36: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2831:27: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2834:30: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2837:29: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2840:28: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2843:27: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2846:26: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2849:25: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2856:29: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2859:27: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2862:27: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2968:32: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2974:29: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2975:27: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2976:30: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2977:34: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2978:29: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:2979:46: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:4396:19: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:4846:19: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:5057:19: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:6146:19: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:6719:30: style: Boolean value assigned to floating point variable. [assignBoolToFloat]
PWGDQ/Core/VarManager.h:6246:14: style: Condition 'fgUsedKF' is always true [knownConditionTrueFalse]
PWGDQ/Core/VarManager.h:5578:10: style: Redundant initialization for 'cZNC'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGDQ/Core/VarManager.h:5588:10: style: Redundant initialization for 'cZNA'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGDQ/Core/VarManager.h:1148:49: performance: Function parameter 'usedVars' should be passed by const reference. [passedByValue]
PWGDQ/Core/VarManager.h:1150:16: style: Variable 'var' can be declared as reference to const [constVariableReference]
PWGDQ/Core/VarManager.h:2530:14: style: Variable 'd' can be declared as reference to const [constVariableReference]
PWGDQ/Macros/dqFlowAccWeights.C:35:95: performance: Function parameter 'Period' should be passed by const reference. [passedByValue]
PWGDQ/Macros/dqFlowAccWeights.C:35:134: performance: Function parameter 'SubDir' should be passed by const reference. [passedByValue]
PWGDQ/Macros/dqFlowAccWeights.C:35:176: performance: Function parameter 'FileName' should be passed by const reference. [passedByValue]
PWGDQ/Macros/evalMchTrackingEfficiency.cxx:368:40: style: Parameter 'effPerChamber' can be declared as const array [constParameter]
PWGDQ/Macros/evalMchTrackingEfficiency.cxx:393:38: style: Parameter 'effPerStation' can be declared as const array [constParameter]
PWGDQ/Macros/evalMchTrackingEfficiency.cxx:86:15: style: Unused variable: hChNames [unusedVariable]
PWGDQ/Macros/evalMchTrackingEfficiency.cxx:94:15: style: Unused variable: hStNames [unusedVariable]
PWGDQ/TableProducer/tableMaker.cxx:1315:14: style: Local variable 'ib' shadows outer variable [shadowVariable]
PWGDQ/TableProducer/tableMakerMC.cxx:937:16: style: Local variable 'mcflags' shadows outer variable [shadowVariable]
PWGDQ/TableProducer/tableMakerMC.cxx:1476:16: style: Local variable 'mcflags' shadows outer variable [shadowVariable]
PWGDQ/TableProducer/tableMakerMC.cxx:1584:14: style: Local variable 'ib' shadows outer variable [shadowVariable]
PWGDQ/TableProducer/tableMakerMC.cxx:1597:14: style: Local variable 'ib' shadows outer variable [shadowVariable]
PWGDQ/TableProducer/tableMakerMC.cxx:1312:28: style: Unused variable: newMFTMatchIndex [unusedVariable]
PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:942:13: style: Local variable 'i' shadows outer variable [shadowVariable]
PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:1195:15: style: Local variable 'i' shadows outer variable [shadowVariable]
PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:1554:14: style: Local variable 'ib' shadows outer variable [shadowVariable]
PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:1567:14: style: Local variable 'ib' shadows outer variable [shadowVariable]
PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:1059:16: style: Variable 'pairCand' can be declared as reference to const [constVariableReference]
PWGDQ/TableProducer/tableMakerMC_withAssoc.cxx:1093:16: style: Variable 'pairCand' can be declared as reference to const [constVariableReference]
PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:293:26: style: Variable 'isNChamberHit[i]' is reassigned a value before the old one has been used. [redundantAssignment]
PWGDQ/TableProducer/tableMakerMuonMchTrkEfficiency.cxx:251:12: style: Variable 'zposCh' can be declared as const array [constVariable]
PWGDQ/TableProducer/tableMaker_withAssoc.cxx:659:14: style: Local variable 'ib' shadows outer variable [shadowVariable]
PWGDQ/TableProducer/tableMaker_withAssoc.cxx:788:20: style: Variable 'thisColl' can be declared as reference to const [constVariableReference]
PWGDQ/TableProducer/tableMaker_withAssoc.cxx:1464:16: style: Variable 'pairCand' can be declared as reference to const [constVariableReference]
PWGDQ/TableProducer/tableMaker_withAssoc.cxx:1498:16: style: Variable 'pairCand' can be declared as reference to const [constVariableReference]
PWGDQ/Tasks/dqCorrelation.cxx:154:29: style: struct member 'DqCumulantFlow::fgDileptonFillMap' is never used. [unusedStructMember]
PWGDQ/Tasks/dqCorrelation.cxx:180:10: style: struct member 'DqCumulantFlow::fPtAxis' is never used. [unusedStructMember]
PWGDQ/Tasks/dqEfficiency.cxx:819:34: style: Redundant condition: fConfigSkimSignalOnly. '!A || (A && B)' is equivalent to '!A || B' [redundantCondition]
PWGDQ/Tasks/dqEfficiency.cxx:1270:129: style: Same expression on both sides of '||'. [duplicateExpression]
PWGDQ/Tasks/dqEfficiency.cxx:308:25: style: Local variable 'i' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency.cxx:481:25: style: Local variable 'i' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency.cxx:885:31: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency.cxx:1245:25: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency.cxx:1281:27: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency.cxx:1588:33: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency.cxx:1078:37: style: struct member 'AnalysisDileptonTrack::fMuonHistNames' is never used. [unusedStructMember]
PWGDQ/Tasks/dqEfficiency.cxx:1079:37: style: struct member 'AnalysisDileptonTrack::fMuonHistNamesMCmatched' is never used. [unusedStructMember]
PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:1925:41: style: Redundant condition: fConfigMC.skimSignalOnly. '!A || (A && B)' is equivalent to '!A || B' [redundantCondition]
PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:4440:46: style: Redundant pointer operation on 't1' - it's already a variable. [redundantPointerOp]
PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:4445:48: style: Redundant pointer operation on 't2' - it's already a variable. [redundantPointerOp]
PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:4451:50: style: Redundant pointer operation on 't3' - it's already a variable. [redundantPointerOp]
PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:1544:21: style: Local variable 'cutNamesStr' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:1633:21: style: Local variable 'cutNamesStr' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:2858:17: style: Local variable 'cutNamesStr' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:3213:31: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:3246:35: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:3276:33: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:3301:37: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:3468:27: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:3479:31: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:3492:29: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:3501:33: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:4244:27: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:4254:33: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:4264:33: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency_withAssoc.cxx:4272:37: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:1726:41: style: Redundant condition: fConfigMC.skimSignalOnly. '!A || (A && B)' is equivalent to '!A || B' [redundantCondition]
PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:2439:13: style: Condition 'isBarrel' is always true [knownConditionTrueFalse]
PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:1308:21: style: Local variable 'cutNamesStr' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:2774:27: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:2784:33: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:2794:33: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:2802:37: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:1165:39: style: struct member 'AnalysisSameEventPairing::fMuonHistNames' is never used. [unusedStructMember]
PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:1166:39: style: struct member 'AnalysisSameEventPairing::fMuonHistNamesMCmatched' is never used. [unusedStructMember]
PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:1176:12: style: struct member 'AnalysisSameEventPairing::fMuonFilterMask' is never used. [unusedStructMember]
PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:1178:7: style: struct member 'AnalysisSameEventPairing::fNCutsMuon' is never used. [unusedStructMember]
PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:2371:12: style: Unused variable: cfgPairing_PairCutsJSON [unusedVariable]
PWGDQ/Tasks/dqEnergyCorrelator_direct.cxx:518:21: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEnergyCorrelator_direct.cxx:555:19: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEnergyCorrelator_direct.cxx:563:21: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqEnergyCorrelator_direct.cxx:570:27: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGDQ/Tasks/dqFlow.cxx:280:95: style: C-style pointer casting [cstyleCast]
PWGDQ/Tasks/dqFlow.cxx:282:106: style: C-style pointer casting [cstyleCast]
PWGDQ/Tasks/dqFlow.cxx:290:95: style: C-style pointer casting [cstyleCast]
PWGDQ/Tasks/mftMchMatcher.cxx:453:16: style: Variable 'pairCand' can be declared as reference to const [constVariableReference]
PWGDQ/Tasks/mftMchMatcher.cxx:262:10: style: struct member 'mftMchMatcher::mBzAtMftCenter' is never used. [unusedStructMember]
PWGDQ/Tasks/muonGlobalAlignment.cxx:1458:23: style: Local variable 'nMftLayers' shadows outer variable [shadowVariable]
PWGDQ/Tasks/muonGlobalAlignment.cxx:1784:18: style: Variable 'refPlaneZ' can be declared as const array [constVariable]
PWGDQ/Tasks/qaMatching.cxx:646:16: style: Redundant initialization for 'histName'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGDQ/Tasks/qaMatching.cxx:647:17: style: Redundant initialization for 'histTitle'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGDQ/Tasks/qaMatching.cxx:2754:12: style: Local variable 'collision' shadows outer variable [shadowVariable]
PWGDQ/Tasks/qaMatching.cxx:405:35: performance: Function parameter 'path' should be passed by const reference. [passedByValue]
PWGDQ/Tasks/qaMatching.cxx:405:53: performance: Function parameter 'title' should be passed by const reference. [passedByValue]
PWGDQ/Tasks/qaMatching.cxx:620:33: performance: Function parameter 'path' should be passed by const reference. [passedByValue]
PWGDQ/Tasks/qaMatching.cxx:2460:36: performance: Function parameter 'funcName' should be passed by const reference. [passedByValue]
PWGDQ/Tasks/qaMatching.cxx:353:44: style: struct member 'qaMatching::fMatchablePairs' is never used. [unusedStructMember]
PWGDQ/Tasks/qaMatching.cxx:354:22: style: struct member 'qaMatching::fMatchingCandidates' is never used. [unusedStructMember]
PWGDQ/Tasks/qaMatching.cxx:355:24: style: struct member 'qaMatching::fTaggedMuons' is never used. [unusedStructMember]
PWGDQ/Tasks/qaMatching.cxx:384:59: style: struct member 'qaMatching::matchingHistos' is never used. [unusedStructMember]
PWGDQ/Tasks/qaMatching.cxx:385:40: style: struct member 'qaMatching::dimuonHistos' is never used. [unusedStructMember]
PWGDQ/Tasks/qaMatching.cxx:803:61: style: struct member 'qaMatching::fMatchingHistogramRegistries' is never used. [unusedStructMember]
PWGDQ/Tasks/qaMatching.cxx:131:13: style: struct member 'MatchingCandidate::muonTrackId' is never used. [unusedStructMember]
PWGDQ/Tasks/qaMatching.cxx:132:13: style: struct member 'MatchingCandidate::mftTrackId' is never used. [unusedStructMember]
PWGDQ/Tasks/qaMatching.cxx:136:12: style: struct member 'MatchingCandidate::matchScoreProd' is never used. [unusedStructMember]
PWGDQ/Tasks/qaMatching.cxx:137:12: style: struct member 'MatchingCandidate::matchChi2Prod' is never used. [unusedStructMember]
PWGDQ/Tasks/quarkoniaToHyperons.cxx:470:49: style: Operator '|' with one operand equal to zero is redundant. [badBitmaskCheck]
PWGDQ/Tasks/quarkoniaToHyperons.cxx:472:49: style: Operator '|' with one operand equal to zero is redundant. [badBitmaskCheck]
PWGDQ/Tasks/quarkoniaToHyperons.cxx:488:49: style: Operator '|' with one operand equal to zero is redundant. [badBitmaskCheck]
PWGDQ/Tasks/quarkoniaToHyperons.cxx:490:49: style: Operator '|' with one operand equal to zero is redundant. [badBitmaskCheck]
PWGDQ/Tasks/quarkoniaToHyperons.cxx:513:44: style: Operator '|' with one operand equal to zero is redundant. [badBitmaskCheck]
PWGDQ/Tasks/quarkoniaToHyperons.cxx:514:43: style: Operator '|' with one operand equal to zero is redundant. [badBitmaskCheck]
PWGDQ/Tasks/quarkoniaToHyperons.cxx:515:47: style: Operator '|' with one operand equal to zero is redundant. [badBitmaskCheck]
PWGDQ/Tasks/quarkoniaToHyperons.cxx:518:52: style: Operator '|' with one operand equal to zero is redundant. [badBitmaskCheck]
PWGDQ/Tasks/quarkoniaToHyperons.cxx:519:56: style: Operator '|' with one operand equal to zero is redundant. [badBitmaskCheck]
PWGDQ/Tasks/tableReader.cxx:1207:19: style: Local variable 'cutNamesStr' shadows outer variable [shadowVariable]
PWGDQ/Tasks/tableReader.cxx:1245:19: style: Local variable 'cutNamesStr' shadows outer variable [shadowVariable]
PWGDQ/Tasks/tableReader.cxx:1278:21: style: Local variable 'cutNamesStr' shadows outer variable [shadowVariable]
PWGDQ/Tasks/tableReader.cxx:1282:38: style: Local variable 'names' shadows outer variable [shadowVariable]
PWGDQ/Tasks/tableReader_withAssoc.cxx:1488:21: style: Local variable 'cutNamesStr' shadows outer variable [shadowVariable]
PWGDQ/Tasks/tableReader_withAssoc.cxx:1571:21: style: Local variable 'cutNamesStr' shadows outer variable [shadowVariable]
PWGDQ/Tasks/tableReader_withAssoc.cxx:1633:19: style: Local variable 'cutNamesStr' shadows outer variable [shadowVariable]
PWGDQ/Tasks/tableReader_withAssoc.cxx:504:17: style: Variable 'bc2Events' can be declared as reference to const [constVariableReference]
PWGDQ/Tasks/tableReader_withAssoc_direct.cxx:1249:21: style: Local variable 'cutNamesStr' shadows outer variable [shadowVariable]
PWGDQ/Tasks/tableReader_withAssoc_direct.cxx:1580:43: style: Local variable 'pvRefit' shadows outer variable [shadowVariable]
PWGDQ/Tasks/tableReader_withAssoc_direct.cxx:1612:86: portability: Shifting signed 32-bit value by 31 bits is implementation-defined behaviour [shiftTooManyBitsSigned]
PWGDQ/Tasks/tableReader_withAssoc_direct.cxx:1148:39: style: struct member 'AnalysisSameEventPairing::fMuonHistNames' is never used. [unusedStructMember]
PWGDQ/Tasks/tableReader_withAssoc_direct.cxx:1155:12: style: struct member 'AnalysisSameEventPairing::fMuonFilterMask' is never used. [unusedStructMember]
PWGDQ/Tasks/tableReader_withAssoc_direct.cxx:1157:7: style: struct member 'AnalysisSameEventPairing::fNCutsMuon' is never used. [unusedStructMember]
PWGDQ/Tasks/taskFwdTrackPid.cxx:72:24: style: struct member 'taskFwdTrackPid::fGenMCSignalsNames' is never used. [unusedStructMember]
PWGEM/Dilepton/Core/DielectronCut.h:561:49: performance: Function parameter 'bins' should be passed by const reference. [passedByValue]
PWGEM/Dilepton/Core/DielectronCut.h:561:80: performance: Function parameter 'cuts' should be passed by const reference. [passedByValue]
PWGEM/Dilepton/TableProducer/createEMEventDilepton.cxx:105:7: style: struct member 'CreateEMEventDilepton::mRunNumber' is never used. [unusedStructMember]
PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:328:36: warning: Identical condition '!track.hasITS()', second condition is always false [identicalConditionAfterEarlyExit]
PWGEM/Dilepton/TableProducer/skimmerPrimaryElectronQC.cxx:227:43: style: Local variable 'cutsMl' shadows outer variable [shadowVariable]
PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:408:24: style: Variable 'dcaXYinSigma' is reassigned a value before the old one has been used. [redundantAssignment]
PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:445:22: style: Variable 'dcaXYinSigma' is reassigned a value before the old one has been used. [redundantAssignment]
PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx:122:37: style: struct member 'skimmerPrimaryMuon::muon_types' is never used. [unusedStructMember]
PWGEM/Dilepton/TableProducer/skimmerPrimaryMuonQC.cxx:570:69: performance: Function parameter 'muon' should be passed by const reference. [passedByValue]
PWGEM/Dilepton/TableProducer/skimmerPrimaryMuonQC.cxx:571:69: performance: Function parameter 'muon' should be passed by const reference. [passedByValue]
PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx:972:64: performance: Searching before insertion is not necessary. Instead of 'mapCollisionTime[track.collisionId()]=track.tofEvTime()' consider using 'mapCollisionTime.try_emplace(track.collisionId(), track.tofEvTime());'. [stlFindInsert]
PWGEM/Dilepton/TableProducer/treeCreatorMuonML.cxx:126:37: style: struct member 'TreeCreatorMuonML::muon_types' is never used. [unusedStructMember]
PWGEM/Dilepton/Tasks/MCtemplates.cxx:337:25: style: Local variable 'i' shadows outer variable [shadowVariable]
PWGEM/Dilepton/Tasks/MCtemplates.cxx:483:36: style: Local variable 'names' shadows outer variable [shadowVariable]
PWGEM/Dilepton/Tasks/MCtemplates.cxx:565:31: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGEM/Dilepton/Tasks/MCtemplates.cxx:573:33: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGEM/Dilepton/Tasks/MCtemplates.cxx:580:33: style: Local variable 'isig' shadows outer variable [shadowVariable]
PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:529:21: style: Redundant initialization for 'ptMatchedMCHMID'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGEM/Dilepton/Tasks/checkMCTemplate.cxx:530:22: style: Redundant initialization for 'etaMatchedMCHMID'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:602:33: style: Condition 'nuls>0||nlspp>0||nlsmm>0' is always true [knownConditionTrueFalse]
PWGEM/Dilepton/Tasks/dileptonPolarization.cxx:146:37: style: struct member 'DileptonPolarization::event_pair_types' is never used. [unusedStructMember]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:959:25: style: Local variable 'i' shadows outer variable [shadowVariable]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1208:25: style: Local variable 'i' shadows outer variable [shadowVariable]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:479:25: style: struct member 'AnalysisTrackSelection::fTrackCutsRes' is never used. [unusedStructMember]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:481:13: style: struct member 'AnalysisTrackSelection::fMCSignalRes' is never used. [unusedStructMember]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1530:30: style: Unused variable: mcnamesreco [unusedVariable]
PWGEM/Dilepton/Tasks/evaluateAcceptance.cxx:127:37: style: struct member 'evaluateAcceptance::dilepton_source_types' is never used. [unusedStructMember]
PWGEM/Dilepton/Tasks/eventQC.cxx:701:16: style: Variable 'qvec' can be declared as reference to const [constVariableReference]
PWGEM/Dilepton/Tasks/eventQC.cxx:162:28: style: struct member 'eventQC::swt_names' is never used. [unusedStructMember]
PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:433:22: style: Condition 's==kRec' is always true [knownConditionTrueFalse]
PWGEM/Dilepton/Tasks/lmeeLFCocktail.cxx:352:9: style: Variable 'i' is reassigned a value before the old one has been used. [redundantAssignment]
PWGEM/Dilepton/Tasks/matchingMFT.cxx:565:8: style: Redundant initialization for 'pt'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGEM/Dilepton/Tasks/matchingMFT.cxx:566:9: style: Redundant initialization for 'eta'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGEM/Dilepton/Tasks/matchingMFT.cxx:1117:13: style: Variable 'centralities' can be declared as const array [constVariable]
PWGEM/Dilepton/Tasks/matchingMFT.cxx:1173:13: style: Variable 'centralities' can be declared as const array [constVariable]
PWGEM/Dilepton/Tasks/matchingMFT.cxx:1236:13: style: Variable 'centralities' can be declared as const array [constVariable]
PWGEM/Dilepton/Tasks/matchingMFT.cxx:156:37: style: struct member 'matchingMFT::muon_types' is never used. [unusedStructMember]
PWGEM/Dilepton/Tasks/studyDCAFitter.cxx:138:37: style: struct member 'studyDCAFitter::pair_names' is never used. [unusedStructMember]
PWGEM/Dilepton/Tasks/taggingHFE.cxx:1089:21: style: Local variable 'mcCollision' shadows outer variable [shadowVariable]
PWGEM/Dilepton/Tasks/taggingHFE.cxx:230:37: style: struct member 'taggingHFE::hadron_names' is never used. [unusedStructMember]
PWGEM/Dilepton/Tasks/taggingHFE.cxx:231:37: style: struct member 'taggingHFE::pair_names' is never used. [unusedStructMember]
PWGEM/Dilepton/Tasks/taggingHFE.cxx:232:37: style: struct member 'taggingHFE::hTypes' is never used. [unusedStructMember]
PWGEM/Dilepton/Tasks/taggingHFE.cxx:233:37: style: struct member 'taggingHFE::promptTypes' is never used. [unusedStructMember]
PWGEM/Dilepton/Utils/EMTrack.h:158:5: performance: Variable 'fVPos' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList]
PWGEM/Dilepton/Utils/EMTrackUtilities.h:171:120: style: Parameter 'l' can be declared as reference to const [constParameterReference]
PWGEM/Dilepton/Utils/EMTrackUtilities.h:171:161: style: Parameter 'r' can be declared as reference to const [constParameterReference]
PWGEM/Dilepton/Utils/EMTrackUtilities.h:190:120: style: Parameter 'l' can be declared as reference to const [constParameterReference]
PWGEM/Dilepton/Utils/EMTrackUtilities.h:190:161: style: Parameter 'r' can be declared as reference to const [constParameterReference]
PWGEM/Dilepton/Utils/MCUtilities.h:294:17: style: Condition 'motherid3!=motherid1' is always false [knownConditionTrueFalse]
PWGEM/Dilepton/Utils/MCUtilities.h:380:17: style: Condition 'motherid3!=motherid1' is always false [knownConditionTrueFalse]
PWGEM/Dilepton/Utils/MCUtilities.h:387:19: style: Condition 'mother3_pdg!=mother1_pdg' is always false [knownConditionTrueFalse]
PWGEM/Dilepton/Utils/MCUtilities.h:888:40: style: Return value 'id2>-1' is always true [knownConditionTrueFalse]
PWGEM/Dilepton/Utils/MlResponseDielectronSingleTrack.h:219:3: warning: Member variable 'MlResponseDielectronSingleTrack::mCachedIndexBinning' is not initialized in the constructor. [uninitMemberVar]
PWGEM/Dilepton/Utils/MlResponseO2Track.h:191:3: warning: Member variable 'MlResponseO2Track::mCachedIndexBinning' is not initialized in the constructor. [uninitMemberVar]
PWGEM/Dilepton/Utils/MomentumSmearer.h:41:3: warning: Member variable 'MomentumSmearer::fResoND' is not initialized in the constructor. [uninitMemberVar]
PWGEM/Dilepton/Utils/MomentumSmearer.h:41:3: warning: Member variable 'MomentumSmearer::fResoPt' is not initialized in the constructor. [uninitMemberVar]
PWGEM/Dilepton/Utils/MomentumSmearer.h:41:3: warning: Member variable 'MomentumSmearer::fResoEta' is not initialized in the constructor. [uninitMemberVar]
PWGEM/Dilepton/Utils/MomentumSmearer.h:41:3: warning: Member variable 'MomentumSmearer::fResoPhi_Pos' is not initialized in the constructor. [uninitMemberVar]
PWGEM/Dilepton/Utils/MomentumSmearer.h:41:3: warning: Member variable 'MomentumSmearer::fResoPhi_Neg' is not initialized in the constructor. [uninitMemberVar]
PWGEM/Dilepton/Utils/MomentumSmearer.h:41:3: warning: Member variable 'MomentumSmearer::fEff' is not initialized in the constructor. [uninitMemberVar]
PWGEM/Dilepton/Utils/MomentumSmearer.h:41:3: warning: Member variable 'MomentumSmearer::fDCA' is not initialized in the constructor. [uninitMemberVar]
PWGEM/Dilepton/Utils/MomentumSmearer.h:41:3: warning: Member variable 'MomentumSmearer::fTimestamp' is not initialized in the constructor. [uninitMemberVar]
PWGEM/Dilepton/Utils/MomentumSmearer.h:44:3: warning: Member variable 'MomentumSmearer::fTimestamp' is not initialized in the constructor. [uninitMemberVar]
PWGEM/Dilepton/Utils/MomentumSmearer.h:59:3: warning: Member variable 'MomentumSmearer::fTimestamp' is not initialized in the constructor. [uninitMemberVar]
PWGEM/Dilepton/Utils/MomentumSmearer.h:76:3: warning: Member variable 'MomentumSmearer::fTimestamp' is not initialized in the constructor. [uninitMemberVar]
PWGEM/Dilepton/Utils/MomentumSmearer.h:91:3: warning: Member variable 'MomentumSmearer::fTimestamp' is not initialized in the constructor. [uninitMemberVar]
PWGEM/Dilepton/Utils/MomentumSmearer.h:135:21: warning: Either the condition '!fDCA' is redundant or there is possible null pointer dereference: fReso. [nullPointerRedundantCheck]
PWGEM/Dilepton/Utils/MomentumSmearer.h:148:17: warning: Either the condition '!fResoND' is redundant or there is possible null pointer dereference: hs_reso. [nullPointerRedundantCheck]
PWGEM/Dilepton/Utils/MomentumSmearer.h:149:16: warning: Either the condition '!fResoND' is redundant or there is possible null pointer dereference: hs_reso. [nullPointerRedundantCheck]
PWGEM/Dilepton/Utils/MomentumSmearer.h:150:17: warning: Either the condition '!fResoND' is redundant or there is possible null pointer dereference: hs_reso. [nullPointerRedundantCheck]
PWGEM/Dilepton/Utils/MomentumSmearer.h:151:17: warning: Either the condition '!fResoND' is redundant or there is possible null pointer dereference: hs_reso. [nullPointerRedundantCheck]
PWGEM/Dilepton/Utils/MomentumSmearer.h:152:16: warning: Either the condition '!fResoND' is redundant or there is possible null pointer dereference: hs_reso. [nullPointerRedundantCheck]
PWGEM/Dilepton/Utils/MomentumSmearer.h:135:21: warning: Null pointer dereference: fReso [ctunullpointer]
PWGEM/Dilepton/Utils/MomentumSmearer.h:148:17: warning: Null pointer dereference: hs_reso [ctunullpointer]
PWGEM/PhotonMeson/Core/HistogramsLibrary.cxx:615:15: style: Local variable 'hMvsPt' shadows outer variable [shadowVariable]
PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx:347:49: style: Variable 'e' can be declared as reference to const [constVariableReference]
PWGEM/PhotonMeson/TableProducer/skimmerPHOS.cxx:62:9: style: Statements following 'continue' will never be executed. [unreachableCode]
PWGEM/PhotonMeson/TableProducer/skimmerPHOS.cxx:66:9: style: Statements following 'continue' will never be executed. [unreachableCode]
PWGEM/PhotonMeson/TableProducer/skimmerPHOS.cxx:70:9: style: Statements following 'continue' will never be executed. [unreachableCode]
PWGEM/PhotonMeson/TableProducer/skimmerPrimaryElectronFromDalitzEE.cxx:240:27: warning: Identical condition '!track.hasITS()', second condition is always false [identicalConditionAfterEarlyExit]
PWGEM/PhotonMeson/Tasks/CheckMCV0.cxx:180:24: style: struct member 'CheckMCV0::mcMotherXYZEtaTglPtProp' is never used. [unusedStructMember]
PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:152:90: style: struct member 'HeavyNeutralMeson::proton' is never used. [unusedStructMember]
PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:152:98: style: struct member 'HeavyNeutralMeson::antiproton' is never used. [unusedStructMember]
PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:152:110: style: struct member 'HeavyNeutralMeson::deuteron' is never used. [unusedStructMember]
PWGEM/PhotonMeson/Tasks/HeavyNeutralMeson.cxx:152:120: style: struct member 'HeavyNeutralMeson::antideuteron' is never used. [unusedStructMember]
PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:119:68: performance: Function parameter 'pairname' should be passed by const reference. [passedByValue]
PWGEM/PhotonMeson/Tasks/MaterialBudgetMC.cxx:411:13: style: Variable 'centralities' can be declared as const array [constVariable]
PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:130:65: performance: Function parameter 'detname' should be passed by const reference. [passedByValue]
PWGEM/PhotonMeson/Tasks/SinglePhoton.cxx:160:16: style: Variable 'detname' can be declared as reference to const [constVariableReference]
PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:134:72: performance: Function parameter 'detname' should be passed by const reference. [passedByValue]
PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:163:16: style: Variable 'detname' can be declared as reference to const [constVariableReference]
PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:372:13: style: Variable 'centralities' can be declared as const array [constVariable]
PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:105:30: style: struct member 'SinglePhotonMC::fPHOSCuts' is never used. [unusedStructMember]
PWGEM/PhotonMeson/Tasks/SinglePhotonMC.cxx:106:29: style: struct member 'SinglePhotonMC::fEMCCuts' is never used. [unusedStructMember]
PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:134:68: performance: Function parameter 'pairname' should be passed by const reference. [passedByValue]
PWGEM/PhotonMeson/Tasks/TagAndProbe.cxx:165:16: style: Variable 'pairname' can be declared as reference to const [constVariableReference]
PWGEM/PhotonMeson/Tasks/emcalBcWiseGammaGamma.cxx:248:55: style: Variable 'e' can be declared as reference to const [constVariableReference]
PWGEM/PhotonMeson/Tasks/emcalPi0Qc.cxx:109:5: performance: Variable 'pMeson' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList]
PWGEM/PhotonMeson/Tasks/emcalPi0Qc.cxx:1007:20: style: Condition 'i<180' is always true [knownConditionTrueFalse]
PWGEM/PhotonMeson/Tasks/emcalPi0Qc.cxx:935:22: style: Variable 'lvRotationPion' is reassigned a value before the old one has been used. [redundantAssignment]
PWGEM/PhotonMeson/Tasks/emcalPi0Qc.cxx:106:27: performance: Function parameter 'p2' should be passed by const reference. [passedByValue]
PWGEM/PhotonMeson/Tasks/emcalPi0Qc.cxx:128:37: performance: Function parameter 'vecGamma' should be passed by const reference. [passedByValue]
PWGEM/PhotonMeson/Tasks/emcalPi0Qc.cxx:975:34: performance: Function parameter 'gamma' should be passed by const reference. [passedByValue]
PWGEM/PhotonMeson/Tasks/gammaConversions.cxx:481:39: style: Parameter 'theContainer' can be declared as reference to const [constParameterReference]
PWGEM/PhotonMeson/Tasks/gammaConversions.cxx:488:42: style: Parameter 'theContainer' can be declared as reference to const [constParameterReference]
PWGEM/PhotonMeson/Tasks/pcmQC.cxx:521:20: style: Variable 'leg' can be declared as reference to const [constVariableReference]
PWGEM/PhotonMeson/Tasks/photonResoTask.cxx:79:26: style: struct member 'PhotonResoTask::MinEnergy' is never used. [unusedStructMember]
PWGEM/PhotonMeson/Tasks/photonhbt.cxx:356:12: warning: Struct 'Photonhbt' does not have a copy constructor which is recommended since it has dynamic memory/resource management. [noCopyConstructor]
PWGEM/PhotonMeson/Tasks/photonhbt.cxx:356:12: warning: Struct 'Photonhbt' does not have a operator= which is recommended since it has dynamic memory/resource management. [noOperatorEq]
PWGEM/PhotonMeson/Tasks/taskPi0FlowEMC.cxx:806:47: style: Condition 'mesonConfig.enableTanThetadPhi.value' is always true [knownConditionTrueFalse]
PWGEM/PhotonMeson/Tasks/taskPi0FlowEMC.cxx:828:49: style: Condition 'mesonConfig.enableTanThetadPhi.value' is always true [knownConditionTrueFalse]
PWGEM/PhotonMeson/Tasks/taskPi0FlowEMC.cxx:913:47: style: Condition 'mesonConfig.enableTanThetadPhi.value' is always true [knownConditionTrueFalse]
PWGEM/PhotonMeson/Tasks/taskPi0FlowEMC.cxx:945:47: style: Condition 'mesonConfig.enableTanThetadPhi.value' is always true [knownConditionTrueFalse]
PWGEM/PhotonMeson/Utils/HNMUtilities.h:73:5: performance: Variable 'vGG' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList]
PWGEM/PhotonMeson/Utils/HNMUtilities.h:71:36: performance: Function parameter 'p2' should be passed by const reference. [passedByValue]
PWGEM/PhotonMeson/Utils/HNMUtilities.h:144:98: performance: Function parameter 'EMCEtaShift' should be passed by const reference. [passedByValue]
PWGEM/PhotonMeson/Utils/HNMUtilities.h:144:133: performance: Function parameter 'EMCPhiShift' should be passed by const reference. [passedByValue]
PWGEM/PhotonMeson/Utils/HNMUtilities.h:163:91: performance: Function parameter 'EMCEtaShift' should be passed by const reference. [passedByValue]
PWGEM/PhotonMeson/Utils/HNMUtilities.h:163:126: performance: Function parameter 'EMCPhiShift' should be passed by const reference. [passedByValue]
PWGEM/PhotonMeson/Utils/HNMUtilities.h:178:48: performance: Function parameter 'vPhotons' should be passed by const reference. [passedByValue]
PWGEM/Tasks/phosAlign.cxx:321:17: warning: Identical inner 'if' condition is always true. [identicalInnerCondition]
PWGEM/Tasks/phosAlign.cxx:222:47: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGEM/Tasks/phosAlign.cxx:301:19: performance: Range variable 'pp' should be declared as const reference. [iterateByValue]
PWGEM/Tasks/phosCalibration.cxx:64:5: warning: Member variable 'photon::fBC' is not initialized in the constructor. [uninitMemberVar]
PWGEM/Tasks/phosCalibration.cxx:64:5: warning: Member variable 'photon::fabsId' is not initialized in the constructor. [uninitMemberVar]
PWGEM/Tasks/phosCalibration.cxx:64:5: warning: Member variable 'photon::fBad' is not initialized in the constructor. [uninitMemberVar]
PWGEM/Tasks/phosCalibration.cxx:66:14: warning: Member variable 'photon::fBC' is not initialized in the constructor. [uninitMemberVar]
PWGEM/Tasks/phosCalibration.cxx:67:14: warning: Member variable 'photon::fBC' is not initialized in the constructor. [uninitMemberVar]
PWGEM/Tasks/phosCalibration.cxx:379:15: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGEM/Tasks/phosCalibration.cxx:362:17: style: Variable 'el' can be declared as reference to const [constVariableReference]
PWGEM/Tasks/phosElId.cxx:1170:32: style: Parameter 'mod' can be declared as reference to const [constParameterReference]
PWGEM/Tasks/phosNbar.cxx:325:17: style: Condition '!minimizeCPA(nbar,tr,cpa,vtxV0,m,pt)' is always false [knownConditionTrueFalse]
PWGEM/Tasks/phosNbar.cxx:393:19: style: Condition '!minimizeCPA(nbar,tr,cpa,vtxV0,m,pt)' is always false [knownConditionTrueFalse]
PWGEM/Tasks/phosNbar.cxx:427:19: style: Condition '!minimizeCPA(nbar,tr,cpa,vtxV0,m,pt)' is always false [knownConditionTrueFalse]
PWGEM/Tasks/phosNbar.cxx:496:21: style: Variable 'isColSelected' is reassigned a value before the old one has been used. [redundantAssignment]
PWGEM/Tasks/phosNbar.cxx:272:13: style: Statements following 'continue' will never be executed. [unreachableCode]
PWGEM/Tasks/phosNbar.cxx:388:17: performance: Range variable 'nbarMixEv' should be declared as const reference. [iterateByValue]
PWGEM/Tasks/phosNbar.cxx:421:15: performance: Range variable 'trMixEvent' should be declared as const reference. [iterateByValue]
PWGEM/Tasks/phosNbar.cxx:742:26: style: Parameter 'n' can be declared as reference to const [constParameterReference]
PWGEM/Tasks/phosNbar.cxx:840:29: style: Parameter 'n' can be declared as reference to const [constParameterReference]
PWGEM/Tasks/phosNonlin.cxx:102:5: warning: Member variable 'Photon::mod' is not initialized in the constructor. [uninitMemberVar]
PWGEM/Tasks/phosNonlin.cxx:118:45: style: struct member 'PhosNonlin::hReMIJ' is never used. [unusedStructMember]
PWGEM/Tasks/phosNonlin.cxx:118:53: style: struct member 'PhosNonlin::hReMKL' is never used. [unusedStructMember]
PWGEM/Tasks/phosPi0.cxx:694:9: style: Condition '!isSelected' is always false [knownConditionTrueFalse]
PWGEM/Tasks/phosPi0.cxx:449:24: style: Local variable 'pt' shadows outer variable [shadowVariable]
PWGEM/Tasks/phosPi0.cxx:522:16: style: Local variable 'pt' shadows outer variable [shadowVariable]
PWGEM/Tasks/phosPi0.cxx:631:18: style: Local variable 'pt' shadows outer variable [shadowVariable]
PWGEM/Tasks/phosPi0.cxx:747:16: style: Local variable 'pt' shadows outer variable [shadowVariable]
PWGEM/Tasks/phosPi0.cxx:777:18: style: Local variable 'pt' shadows outer variable [shadowVariable]
PWGEM/Tasks/phosPi0.cxx:840:82: style: Parameter 'q' can be declared as reference to const [constParameterReference]
PWGEM/Tasks/phosPi0.cxx:122:60: style: struct member 'PhosPi0::mAmbMixedEvents' is never used. [unusedStructMember]
PWGHF/D2H/Macros/runMassFitter.C:641:3: error: Unhandled exception thrown in function that is an entry point. [throwInEntryPoint]
PWGHF/D2H/TableProducer/dataCreatorJpsiHadReduced.cxx:1055:16: style: Local variable 'invMassJpsi' shadows outer variable [shadowVariable]
PWGHF/D2H/Tasks/taskBsReduced.cxx:625:17: style: Local variable 'candidateMlScoreSig' shadows outer variable [shadowVariable]
PWGHF/D2H/Tasks/taskCharmResoToDTrkReduced.cxx:415:19: style: Condition 'DecayChannel::D0Kplus==DecayChannel::D0Kplus' is always true [knownConditionTrueFalse]
PWGHF/D2H/Tasks/taskCharmResoToDV0Reduced.cxx:460:19: style: Condition 'DecayChannel::DstarK0s==DecayChannel::DstarK0s' is always true [knownConditionTrueFalse]
PWGHF/D2H/Tasks/taskCharmResoToDV0Reduced.cxx:464:19: style: Condition 'DecayChannel::DplusK0s==DecayChannel::DplusK0s' is always true [knownConditionTrueFalse]
PWGHF/D2H/Tasks/taskCharmResoToDV0Reduced.cxx:468:19: style: Condition 'DecayChannel::DplusLambda==DecayChannel::DplusLambda' is always true [knownConditionTrueFalse]
PWGHF/D2H/Tasks/taskCharmResoToDV0Reduced.cxx:472:19: style: Condition 'DecayChannel::D0Lambda==DecayChannel::D0Lambda' is always true [knownConditionTrueFalse]
PWGHF/D2H/Tasks/taskLbReduced.cxx:519:25: warning: Identical inner 'if' condition is always true. [identicalInnerCondition]
PWGHF/D2H/Tasks/taskXic0ToXiPi.cxx:160:22: style: Local variable 'thnAxisCent' shadows outer variable [shadowVariable]
PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:698:7: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGHF/HFC/Macros/DhCorrelationExtraction.cxx:540:11: style: Local variable 'c1D' shadows outer variable [shadowVariable]
PWGHF/HFC/Macros/DhCorrelationFitter.cxx:125:12: warning: Class 'DhCorrelationFitter' has dynamic memory/resource allocation(s). The copy constructor is explicitly defaulted but the default copy constructor does not work well. It is recommended to define or delete the copy constructor. [noCopyConstructor]
PWGHF/HFC/Macros/FitCorrel.C:268:12: style: Variable 'fFit' can be declared as pointer to const [constVariablePointer]
PWGHF/HFC/Macros/FitCorrel.C:274:14: style: Variable 'tpT' can be declared as pointer to const [constVariablePointer]
PWGHF/HFC/TableProducer/correlatorDplusHadrons.cxx:756:23: style: Local variable 'corrBinning' shadows outer variable [shadowVariable]
PWGHF/HFC/TableProducer/correlatorDsHadrons.cxx:672:16: style: Local variable 'mcParticle' shadows outer variable [shadowVariable]
PWGHF/HFC/TableProducer/correlatorLcHadrons.cxx:1010:23: style: Local variable 'corrBinning' shadows outer variable [shadowVariable]
PWGHF/HFC/Tasks/taskCorrelationDplusHadrons.cxx:309:10: style: Local variable 'effD' shadows outer variable [shadowVariable]
PWGHF/HFC/Tasks/taskFlow.cxx:1034:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGHF/HFC/Tasks/taskFlow.cxx:1846:15: style: Local variable 'amplitude' shadows outer variable [shadowVariable]
PWGHF/HFC/Tasks/taskFlow.cxx:1883:35: style: Local variable 'tracks1' shadows outer argument [shadowArgument]
PWGHF/HFC/Tasks/taskFlow.cxx:1883:56: style: Local variable 'tracks2' shadows outer argument [shadowArgument]
PWGHF/HFL/Tasks/taskSingleMuonMultMc.cxx:470:20: style: Local variable 'pdg' shadows outer variable [shadowVariable]
PWGHF/HFL/Tasks/taskSingleMuonMultMc.cxx:508:12: style: Local variable 'charge' shadows outer variable [shadowVariable]
PWGHF/Macros/computeFonllPlusPythiaPredictions.C:163:75: performance: Function parameter 'inFileFonllBhad' should be passed by const reference. [passedByValue]
PWGHF/Macros/computeFonllPlusPythiaPredictions.C:163:149: performance: Function parameter 'inFileFonllPromptDzero' should be passed by const reference. [passedByValue]
PWGHF/Macros/computeFonllPlusPythiaPredictions.C:163:185: performance: Function parameter 'inFileFonllPromptDplus' should be passed by const reference. [passedByValue]
PWGHF/Macros/computeFonllPlusPythiaPredictions.C:163:221: performance: Function parameter 'inFileFonllPromptDstarPlus' should be passed by const reference. [passedByValue]
PWGHF/Macros/computeFonllPlusPythiaPredictions.C:163:261: performance: Function parameter 'outFileName' should be passed by const reference. [passedByValue]
PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:597:28: style: Redundant initialization for 'arrMassCharmBaryon'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:858:26: style: Local variable 'kfV0' shadows outer variable [shadowVariable]
PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:897:26: style: Local variable 'kfOmega' shadows outer variable [shadowVariable]
PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx:1385:26: style: Local variable 'kfXi' shadows outer variable [shadowVariable]
PWGHF/TableProducer/candidateCreatorXic0Omegac0Qa.cxx:269:41: style: struct member 'HfCandidateCreatorXic0Omegac0Qa::massOfBach' is never used. [unusedStructMember]
PWGHF/TableProducer/candidateCreatorXic0Omegac0Qa.cxx:270:34: style: struct member 'HfCandidateCreatorXic0Omegac0Qa::massOfCharmBaryon' is never used. [unusedStructMember]
PWGHF/TableProducer/candidateSelectorToXiPiQa.cxx:707:29: style: Redundant initialization for 'inputFeaturesXic0'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGHF/TableProducer/treeCreatorOmegacSt.cxx:400:11: style: Local variable 'decayChannel' shadows outer variable [shadowVariable]
PWGHF/TableProducer/treeCreatorOmegacSt.cxx:675:22: style: Local variable 'trackParCovCasc' shadows outer variable [shadowVariable]
PWGHF/TableProducer/treeCreatorOmegacSt.cxx:694:33: style: Local variable 'secondaryVertex' shadows outer variable [shadowVariable]
PWGHF/Utils/utilsMcGen.h:233:27: style: Condition 'flagChannelMain==0' is always true [knownConditionTrueFalse]
PWGJE/Core/JetBkgSubUtils.h:49:3: style: Class 'JetBkgSubUtils' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGJE/Core/JetDerivedDataUtilities.h:734:65: performance: Function parameter 'clusterDefinitions' should be passed by const reference. [passedByValue]
PWGJE/Core/JetFindingUtilities.h:281:138: performance: Function parameter 'jetRadius' should be passed by const reference. [passedByValue]
PWGJE/Core/MlResponseHfTagging.h:427:253: performance: Function parameter 'tfFuncType' should be passed by const reference. [passedByValue]
PWGJE/Core/emcalCrossTalkEmulation.cxx:219:44: style: Array index 'iSM' is used before limits check. [arrayIndexThenCheck]
PWGJE/Core/emcalCrossTalkEmulation.cxx:232:11: style: Local variable 'iSM' shadows outer argument [shadowArgument]
PWGJE/Core/emcalCrossTalkEmulation.h:182:3: warning: Member variable 'EMCCrossTalk::mTCardCorrClusEnerConserv' is not initialized. [uninitMemberVarPrivate]
PWGJE/Core/emcalCrossTalkEmulation.h:196:3: warning: Member variable 'EMCCrossTalk::mRandomizeTCard' is not initialized. [uninitMemberVarPrivate]
PWGJE/Core/emcalCrossTalkEmulation.h:198:3: warning: Member variable 'EMCCrossTalk::mTCardCorrMinAmp' is not initialized. [uninitMemberVarPrivate]
PWGJE/Core/emcalCrossTalkEmulation.h:199:3: warning: Member variable 'EMCCrossTalk::mTCardCorrMinInduced' is not initialized. [uninitMemberVarPrivate]
PWGJE/Core/emcalCrossTalkEmulation.h:200:3: warning: Member variable 'EMCCrossTalk::mTCardCorrMaxInducedELeak' is not initialized. [uninitMemberVarPrivate]
PWGJE/Core/emcalCrossTalkEmulation.h:201:3: warning: Member variable 'EMCCrossTalk::mTCardCorrMaxInduced' is not initialized. [uninitMemberVarPrivate]
PWGJE/Core/emcalCrossTalkEmulation.h:207:3: warning: Member variable 'EMCCrossTalk::mGeometry' is not initialized. [uninitMemberVarPrivate]
PWGJE/DataModel/EMCALClusterDefinition.h:46:3: warning: Member variable 'EMCALClusterDefinition::algorithm' is not initialized in the constructor. [uninitMemberVar]
PWGJE/DataModel/EMCALClusterDefinition.h:53:5: performance: Variable 'name' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList]
PWGJE/DataModel/EMCALClusterDefinition.h:113:15: performance: Function 'toString()' should return member 'name' by const reference. [returnByReference]
PWGJE/DataModel/EMCALClusterDefinition.h:48:108: performance: Function parameter 'pName' should be passed by const reference. [passedByValue]
PWGJE/TableProducer/emcalClusterHadronicCorrectionTask.cxx:248:13: style: Redundant initialization for 'corrE'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGJE/TableProducer/emcalMatchedTracksTask.cxx:83:20: style: struct member 'EmcalMatchedTracksTask::mSelectBCIDs' is never used. [unusedStructMember]
PWGJE/TableProducer/mcOutlierRejector.cxx:86:109: style: Condition 'selectionObjectPt>ptHatMax*ptHard' is always true [knownConditionTrueFalse]
PWGJE/Tasks/emcClusterMonitor.cxx:241:53: style: Variable 'e' can be declared as reference to const [constVariableReference]
PWGJE/Tasks/emcClusterMonitor.cxx:333:53: style: Variable 'e' can be declared as reference to const [constVariableReference]
PWGJE/Tasks/emcTmMonitor.cxx:496:20: style: Condition 'i<245' is always true [knownConditionTrueFalse]
PWGJE/Tasks/emcTmMonitor.cxx:291:53: style: Variable 'e' can be declared as reference to const [constVariableReference]
PWGJE/Tasks/emcalGammaGammaBcWise.cxx:121:5: performance: Variable 'pMeson' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList]
PWGJE/Tasks/emcalGammaGammaBcWise.cxx:78:38: warning: Possible null pointer dereference if the default parameter value is used: emcalGeom [nullPointerDefaultArg]
PWGJE/Tasks/emcalGammaGammaBcWise.cxx:79:23: warning: Possible null pointer dereference if the default parameter value is used: emcalGeom [nullPointerDefaultArg]
PWGJE/Tasks/emcalGammaGammaBcWise.cxx:83:7: warning: Possible null pointer dereference if the default parameter value is used: emcalGeom [nullPointerDefaultArg]
PWGJE/Tasks/emcalGammaGammaBcWise.cxx:105:14: warning: Possible null pointer dereference if the default parameter value is used: emcalGeom [nullPointerDefaultArg]
PWGJE/Tasks/emcalGammaGammaBcWise.cxx:119:27: performance: Function parameter 'p2' should be passed by const reference. [passedByValue]
PWGJE/Tasks/emcalGammaGammaBcWise.cxx:108:49: style: Variable 'e' can be declared as reference to const [constVariableReference]
PWGJE/Tasks/emcalPi0EnergyScaleCalib.cxx:184:5: performance: Variable 'pMeson' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList]
PWGJE/Tasks/emcalPi0EnergyScaleCalib.cxx:181:27: performance: Function parameter 'p2' should be passed by const reference. [passedByValue]
PWGJE/Tasks/hadronPhotonCorrelation.cxx:783:9: style: Local variable 'nHadrons' shadows outer variable [shadowVariable]
PWGJE/Tasks/hadronPhotonCorrelation.cxx:822:9: style: Local variable 'nHadrons' shadows outer variable [shadowVariable]
PWGJE/Tasks/hadronPhotonCorrelation.cxx:866:9: style: Local variable 'nHadrons' shadows outer variable [shadowVariable]
PWGJE/Tasks/hadronPhotonCorrelation.cxx:341:27: style: struct member 'HasHasMcParticle::Value' is never used. [unusedStructMember]
PWGJE/Tasks/jetChCorr.cxx:236:19: style: Local variable 'z' shadows outer variable [shadowVariable]
PWGJE/Tasks/jetChargedV2.cxx:662:15: style: Local variable 'centrality' shadows outer variable [shadowVariable]
PWGJE/Tasks/jetCrossSectionEfficiency.cxx:325:15: style: Local variable 'centrality' shadows outer variable [shadowVariable]
PWGJE/Tasks/jetCrossSectionEfficiency.cxx:467:15: style: Local variable 'centrality' shadows outer variable [shadowVariable]
PWGJE/Tasks/jetFinderQA.cxx:407:16: style: Local variable 'trackEtaAxis' shadows outer variable [shadowVariable]
PWGJE/Tasks/jetFinderQA.cxx:409:16: style: Local variable 'jetPtAxis' shadows outer variable [shadowVariable]
PWGJE/Tasks/jetFinderQA.cxx:410:16: style: Local variable 'jetPtAxisRhoAreaSub' shadows outer variable [shadowVariable]
PWGJE/Tasks/jetFinderQA.cxx:411:16: style: Local variable 'jetEtaAxis' shadows outer variable [shadowVariable]
PWGJE/Tasks/jetFinderQA.cxx:1514:10: style: Local variable 'fillHistograms' shadows outer function [shadowFunction]
PWGJE/Tasks/jetHadronRecoil.cxx:225:50: style: Same expression on both sides of '||'. [duplicateExpression]
PWGJE/Tasks/jetOutlierQA.cxx:92:23: style: struct member 'JetOutlierQATask::jetPtBinsRhoAreaSub' is never used. [unusedStructMember]
PWGJE/Tasks/jetSpectraCharged.cxx:381:15: style: Local variable 'centrality' shadows outer variable [shadowVariable]
PWGJE/Tasks/jetSpectraCharged.cxx:958:15: style: Local variable 'centrality' shadows outer variable [shadowVariable]
PWGJE/Tasks/jetSpectraCharged.cxx:1041:15: style: Local variable 'centrality' shadows outer variable [shadowVariable]
PWGJE/Tasks/jetSpectraEseTask.cxx:441:90: style: C-style pointer casting [cstyleCast]
PWGJE/Tasks/jetTaggerHFQA.cxx:706:9: style: Same expression used in consecutive assignments of 'varImpXY' and 'varSigmaImpXY'. [duplicateAssignExpression]
PWGJE/Tasks/nucleiInJets.cxx:2295:13: style: Condition 'isTpcPassed' is always true [knownConditionTrueFalse]
PWGJE/Tasks/nucleiInJets.cxx:2314:15: style: Condition 'isTpcPassed' is always true [knownConditionTrueFalse]
PWGJE/Tasks/phiInJets.cxx:1553:17: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGJE/Tasks/phiInJets.cxx:1083:26: style: Local variable 'lResonance' shadows outer variable [shadowVariable]
PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:244:7: performance: Variable 'triggerBinValuesZPv' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList]
PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:245:7: performance: Variable 'triggerBinValuesMult' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList]
PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:241:81: performance: Function parameter 'binsZPv' should be passed by const reference. [passedByValue]
PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:241:110: performance: Function parameter 'binsMult' should be passed by const reference. [passedByValue]
PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:392:29: performance: Function parameter 'name_id' should be passed by const reference. [passedByValue]
PWGJE/Tasks/photonChargedTriggerCorrelation.cxx:447:29: performance: Function parameter 'name_id' should be passed by const reference. [passedByValue]
PWGJE/Tasks/recoilJets.cxx:1043:22: style: Local variable 'jet' shadows outer variable [shadowVariable]
PWGJE/Tasks/recoilJets.cxx:1185:22: style: Local variable 'jet' shadows outer variable [shadowVariable]
PWGJE/Tasks/recoilJets.cxx:1722:25: style: Unused variable: vPhiOfAssociatedTracks [unusedVariable]
PWGJE/Tasks/statPromptPhoton.cxx:1078:36: style: Redundant condition: The condition 'std::fabs(mom1) > 0' is redundant since 'std::fabs(mom1) > 40' is sufficient. [redundantCondition]
PWGJE/Tasks/statPromptPhoton.cxx:942:45: style: Condition 'chargetrigger' is always false [knownConditionTrueFalse]
PWGJE/Tasks/statPromptPhoton.cxx:1449:18: style: Local variable 'pthadsum' shadows outer variable [shadowVariable]
PWGJE/Tasks/taskEmcExtensiveMcQa.cxx:75:24: style: struct member 'TaskEmcExtensiveMcQa::NSM' is never used. [unusedStructMember]
PWGJE/Tasks/taskEmcExtensiveMcQa.cxx:111:22: style: struct member 'TaskEmcExtensiveMcQa::mCellTime' is never used. [unusedStructMember]
PWGLF/TableProducer/Common/epvector.cxx:75:20: style: struct member 'epvector::TrkBPosLabel' is never used. [unusedStructMember]
PWGLF/TableProducer/Common/epvector.cxx:76:20: style: struct member 'epvector::TrkBNegLabel' is never used. [unusedStructMember]
PWGLF/TableProducer/Common/epvector.cxx:77:22: style: struct member 'epvector::qvecRe' is never used. [unusedStructMember]
PWGLF/TableProducer/Common/epvector.cxx:78:22: style: struct member 'epvector::qvecIm' is never used. [unusedStructMember]
PWGLF/TableProducer/Common/epvector.cxx:79:22: style: struct member 'epvector::qvecAmp' is never used. [unusedStructMember]
PWGLF/TableProducer/Common/kinkBuilder.cxx:289:11: style: Variable 'kinkPool' can be declared as reference to const [constVariableReference]
PWGLF/TableProducer/Common/lfTPCPID.cxx:92:3: style: Struct 'bbParams' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGLF/TableProducer/Common/lfTPCPID.cxx:393:86: warning: Either the condition '!h' is redundant or there is possible null pointer dereference: h. [nullPointerRedundantCheck]
PWGLF/TableProducer/Common/lfTPCPID.cxx:121:37: performance: Function parameter 'v' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Common/spvector.cxx:688:45: style: Condition 'check==0' is always false [knownConditionTrueFalse]
PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx:535:28: style: Redundant initialization for 'correctedTpcInnerParam'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:738:31: style: Expression is always true because 'else if' condition is opposite to previous condition at line 736. [multiCondition]
PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:564:11: style: Condition '!grpmag' is always false [knownConditionTrueFalse]
PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx:527:10: style: Local variable 'd_bz' shadows outer variable [shadowVariable]
PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:664:34: style: Redundant condition: trackPt>ptTof[iP]. 'trackPt<=ptTof[iP] || (trackPt>ptTof[iP] && hasTof)' is equivalent to 'trackPt<=ptTof[iP] || hasTof' [redundantCondition]
PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:1012:81: style: Redundant condition: kINT7Intervals. '!A || (A && B)' is equivalent to '!A || B' [redundantCondition]
PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:944:14: style: Local variable 'genPt' shadows outer variable [shadowVariable]
PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:930:85: performance: Function parameter 'v0' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:954:102: performance: Function parameter 'trk' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Nuspex/ebyeMaker.cxx:684:28: style: Unused variable: trkId [unusedVariable]
PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:490:100: style: Same expression in both branches of ternary operator. [duplicateExpressionTernary]
PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:793:12: style: Local variable 'heliumPID' shadows outer variable [shadowVariable]
PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:794:13: style: Local variable 'correctedTPCinnerParamHe3' shadows outer variable [shadowVariable]
PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:1235:14: style: Local variable 'collision' shadows outer variable [shadowVariable]
PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx:313:20: style: struct member 'he3HadronFemto::mRecoCollisionIDs' is never used. [unusedStructMember]
PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:104:9: style: struct member 'hyhefourbuilder::maxSnp' is never used. [unusedStructMember]
PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:105:9: style: struct member 'hyhefourbuilder::maxStep' is never used. [unusedStructMember]
PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:180:11: style: struct member 'Anonymous0::decayRadius' is never used. [unusedStructMember]
PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:181:11: style: struct member 'Anonymous0::massHyHe4' is never used. [unusedStructMember]
PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:182:11: style: struct member 'Anonymous0::massAntiHyHe4' is never used. [unusedStructMember]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:268:3: warning: Member variable 'DaughterKf::dcaToPv' is not initialized in the constructor. [uninitMemberVar]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:268:3: warning: Member variable 'DaughterKf::dcaToPvXY' is not initialized in the constructor. [uninitMemberVar]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:268:3: warning: Member variable 'DaughterKf::dcaToPvZ' is not initialized in the constructor. [uninitMemberVar]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:268:3: warning: Member variable 'DaughterKf::active' is not initialized in the constructor. [uninitMemberVar]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:246:20: performance: Function 'getV0daughters()' should return member 'v0DaughterVec' by const reference. [returnByReference]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:223:28: performance: Function parameter 'name_' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:223:80: performance: Function parameter 'daughters_' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:223:109: performance: Function parameter 'daughterTrackSigns_' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:223:147: performance: Function parameter 'v0DaughterVec_' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:230:28: performance: Function parameter 'name_' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:230:97: performance: Function parameter 'daughters_' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:230:126: performance: Function parameter 'daughterTrackSigns_' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:235:49: performance: Function parameter 'daughters_' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:235:78: performance: Function parameter 'daughterTrackSigns_' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:235:116: performance: Function parameter 'v0DaughterVec_' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:268:84: performance: Function parameter 'vtx_' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:293:96: performance: Function parameter 'daughters_' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:350:34: performance: Function parameter 'vtx' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:478:86: performance: Function parameter 'nonV0daughters_' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:1146:138: performance: Function parameter 'trackIds' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:388:40: style: Parameter 'cand' can be declared as reference to const [constParameterReference]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:478:63: style: Parameter 'vecs' can be declared as reference to const [constParameterReference]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:1127:77: style: Parameter 'settings' can be declared as reference to const [constParameterReference]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:314:22: style: Variable 'daughter' can be declared as pointer to const [constVariableReference]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:891:23: style: Variable 'hyperNuc' can be declared as pointer to const [constVariablePointer]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:266:8: style: struct member 'DaughterKf::active' is never used. [unusedStructMember]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:542:38: style: struct member 'HypKfRecoTask::metadata' is never used. [unusedStructMember]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:559:48: style: struct member 'HypKfRecoTask::cascadeHyperNuclei' is never used. [unusedStructMember]
PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx:565:67: style: struct member 'HypKfRecoTask::activeCascade' is never used. [unusedStructMember]
PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:59:3: warning: Member variable 'HyperNucleus::cent' is not initialized in the constructor. [uninitMemberVar]
PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:59:3: warning: Member variable 'HyperNucleus::occu' is not initialized in the constructor. [uninitMemberVar]
PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:59:3: warning: Member variable 'HyperNucleus::runNumber' is not initialized in the constructor. [uninitMemberVar]
PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:251:21: style: Condition 'isMC' is always true [knownConditionTrueFalse]
PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:275:21: style: Condition 'isMC' is always true [knownConditionTrueFalse]
PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:466:38: performance: Function parameter 'vec' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:473:39: performance: Function parameter 'vec' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:441:54: style: Parameter 'posVec' can be declared as reference to const [constParameterReference]
PWGLF/TableProducer/Nuspex/hypKfTreeCreator.cxx:406:31: style: Unused variable: hypNucDaughter [unusedVariable]
PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:495:13: style: Variable 'h3Rigidity' can be declared as reference to const [constVariableReference]
PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx:496:13: style: Variable 'piRigidity' can be declared as reference to const [constVariableReference]
PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:401:11: style: Variable 'mothVtx' can be declared as const array [constVariable]
PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx:312:17: style: struct member 'Anonymous1::prefix' is never used. [unusedStructMember]
PWGLF/TableProducer/Nuspex/reduced3bodyCreator.cxx:368:18: style: Expression is always true because 'else if' condition is opposite to previous condition at line 365. [multiCondition]
PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx:423:22: style: Local variable 'collision' shadows outer argument [shadowArgument]
PWGLF/TableProducer/QC/nucleiQC.cxx:296:12: style: Instance of 'std::runtime_error' object is destroyed immediately. [unusedScopedObject]
PWGLF/TableProducer/QC/nucleiQC.cxx:435:12: style: Instance of 'std::runtime_error' object is destroyed immediately. [unusedScopedObject]
PWGLF/TableProducer/QC/nucleiQC.cxx:500:12: style: Instance of 'std::runtime_error' object is destroyed immediately. [unusedScopedObject]
PWGLF/TableProducer/QC/nucleiQC.cxx:163:24: style: struct member 'nucleiQC::mDcaInfo' is never used. [unusedStructMember]
PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:376:18: style: Condition 'aLambdaTag' is always true [knownConditionTrueFalse]
PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:408:18: style: Condition 'aLambdaTag' is always true [knownConditionTrueFalse]
PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:437:9: style: Condition 'keepEventDoubleHQ' is always true [knownConditionTrueFalse]
PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:437:40: style: Condition 'numberPhi>1' is always true [knownConditionTrueFalse]
PWGLF/TableProducer/Resonances/HeptaQuarktable.cxx:437:60: style: Condition 'numberLambda>0' is always true [knownConditionTrueFalse]
PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:213:16: style: Local variable 'pT' shadows outer variable [shadowVariable]
PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:391:17: style: Local variable 'pT' shadows outer variable [shadowVariable]
PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:447:136: performance: Function parameter 'ccdbPath' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:529:10: style: struct member 'f1protonreducedtable::massF1' is never used. [unusedStructMember]
PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:530:10: style: struct member 'f1protonreducedtable::masskKs0' is never used. [unusedStructMember]
PWGLF/TableProducer/Resonances/f1protonreducedtable.cxx:531:10: style: struct member 'f1protonreducedtable::pT' is never used. [unusedStructMember]
PWGLF/TableProducer/Resonances/filterf1proton.cxx:179:16: style: Local variable 'pT' shadows outer variable [shadowVariable]
PWGLF/TableProducer/Resonances/filterf1proton.cxx:322:17: style: Local variable 'pT' shadows outer variable [shadowVariable]
PWGLF/TableProducer/Resonances/filterf1proton.cxx:378:136: performance: Function parameter 'ccdbPath' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Resonances/filterf1proton.cxx:406:10: style: struct member 'filterf1proton::massF1' is never used. [unusedStructMember]
PWGLF/TableProducer/Resonances/filterf1proton.cxx:407:10: style: struct member 'filterf1proton::masskKs0' is never used. [unusedStructMember]
PWGLF/TableProducer/Resonances/filterf1proton.cxx:408:10: style: struct member 'filterf1proton::pT' is never used. [unusedStructMember]
PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:177:19: style: Local variable 'innerVector' shadows outer variable [shadowVariable]
PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:183:24: style: Local variable 'tuple' shadows outer variable [shadowVariable]
PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:332:19: style: Local variable 'innerVector' shadows outer variable [shadowVariable]
PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:333:19: style: Local variable 'innerVectorCasc' shadows outer variable [shadowVariable]
PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:339:24: style: Local variable 'tuple' shadows outer variable [shadowVariable]
PWGLF/TableProducer/Resonances/resonanceMergeDF.cxx:359:24: style: Local variable 'tuple' shadows outer variable [shadowVariable]
PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:240:18: style: Condition 'aLambdaTag' is always true [knownConditionTrueFalse]
PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:262:18: style: Condition 'aLambdaTag' is always true [knownConditionTrueFalse]
PWGLF/TableProducer/Strangeness/LambdaLambdatable.cxx:276:9: style: Condition 'keepEventLL' is always true [knownConditionTrueFalse]
PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:326:16: style: Variable 'casc' can be declared as reference to const [constVariableReference]
PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:333:16: style: Variable 'casc' can be declared as reference to const [constVariableReference]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:422:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:425:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1152:13: style: Variable 'sigmaRangeXi' can be declared as const array [constVariable]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1153:13: style: Variable 'sigmaRangeOmega' can be declared as const array [constVariable]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1431:26: style: float result is assigned to double variable. If the variable is double to avoid loss of information, then you have loss of information. [truncLongCastAssignment]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1432:29: style: float result is assigned to double variable. If the variable is double to avoid loss of information, then you have loss of information. [truncLongCastAssignment]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1434:30: style: float result is assigned to double variable. If the variable is double to avoid loss of information, then you have loss of information. [truncLongCastAssignment]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1739:26: style: float result is assigned to double variable. If the variable is double to avoid loss of information, then you have loss of information. [truncLongCastAssignment]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1740:29: style: float result is assigned to double variable. If the variable is double to avoid loss of information, then you have loss of information. [truncLongCastAssignment]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1742:30: style: float result is assigned to double variable. If the variable is double to avoid loss of information, then you have loss of information. [truncLongCastAssignment]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:2104:25: style: float result is assigned to double variable. If the variable is double to avoid loss of information, then you have loss of information. [truncLongCastAssignment]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:2108:25: style: float result is assigned to double variable. If the variable is double to avoid loss of information, then you have loss of information. [truncLongCastAssignment]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:2112:25: style: float result is assigned to double variable. If the variable is double to avoid loss of information, then you have loss of information. [truncLongCastAssignment]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:549:15: style: struct member 'cascadeFlow::shiftprofile' is never used. [unusedStructMember]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:555:15: style: struct member 'cascadeFlow::fullCCDBShiftCorrPath' is never used. [unusedStructMember]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:2005:24: style: Unused variable: bdtScore [unusedVariable]
PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:360:17: style: Local variable 'thisInfo' shadows outer variable [shadowVariable]
PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:410:24: style: Variable 'lPosMother' can be declared as reference to const [constVariableReference]
PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:415:30: style: Variable 'lBachMother' can be declared as reference to const [constVariableReference]
PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:453:24: style: Variable 'lPosMother' can be declared as reference to const [constVariableReference]
PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:458:30: style: Variable 'lBachMother' can be declared as reference to const [constVariableReference]
PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:151:30: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/TableProducer/Strangeness/lambdaJetPolarizationIons.cxx:1174:11: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/TableProducer/Strangeness/lambdaJetPolarizationIons.cxx:306:38: style: struct member 'lambdajetpolarizationions::metadata' is never used. [unusedStructMember]
PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:283:16: style: Variable 'cand' can be declared as reference to const [constVariableReference]
PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:291:16: style: Variable 'cand' can be declared as reference to const [constVariableReference]
PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:233:16: style: Variable 'v0' can be declared as reference to const [constVariableReference]
PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:244:16: style: Variable 'v0' can be declared as reference to const [constVariableReference]
PWGLF/TableProducer/Strangeness/sigma0builder.cxx:1333:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/TableProducer/Strangeness/sigma0builder.cxx:2774:23: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:512:85: performance: Function parameter 'v0cand' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Strangeness/strangeTreeCreator.cxx:773:85: performance: Function parameter 'v0' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:687:11: style: Variable 'workflows' can be declared as reference to const [constVariableReference]
PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:1105:16: style: Local variable 'successPropag' shadows outer variable [shadowVariable]
PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:1197:16: style: Local variable 'successPropag' shadows outer variable [shadowVariable]
PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx:1289:16: style: Local variable 'successPropag' shadows outer variable [shadowVariable]
PWGLF/TableProducer/Strangeness/v0selector.cxx:103:45: performance: Function parameter 'ptBins' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Strangeness/v0selector.cxx:117:32: performance: Function parameter 'values' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Strangeness/v0selector.cxx:117:59: performance: Function parameter 'mincuts' should be passed by const reference. [passedByValue]
PWGLF/TableProducer/Strangeness/v0selector.cxx:117:87: performance: Function parameter 'maxcuts' should be passed by const reference. [passedByValue]
PWGLF/Tasks/GlobalEventProperties/PseudorapidityDensityMFT.cxx:1298:21: style: Redundant condition: useEvSel. '!A || (A && B)' is equivalent to '!A || B' [redundantCondition]
PWGLF/Tasks/GlobalEventProperties/PseudorapidityDensityMFT.cxx:1390:19: style: Redundant condition: useEvSel. '!useEvSel || (useEvSel && collision.sel8())' is equivalent to '!useEvSel || collision.sel8()' [redundantCondition]
PWGLF/Tasks/GlobalEventProperties/PseudorapidityDensityMFT.cxx:1952:21: style: Redundant condition: useEvSel. '!useEvSel || (useEvSel && collision.sel8())' is equivalent to '!useEvSel || collision.sel8()' [redundantCondition]
PWGLF/Tasks/GlobalEventProperties/PseudorapidityDensityMFT.cxx:2028:19: style: Redundant condition: useEvSel. '!useEvSel || (useEvSel && collision.sel8())' is equivalent to '!useEvSel || collision.sel8()' [redundantCondition]
PWGLF/Tasks/GlobalEventProperties/PseudorapidityDensityMFT.cxx:2965:25: style: Condition 'countedPrimary' is always true [knownConditionTrueFalse]
PWGLF/Tasks/GlobalEventProperties/PseudorapidityDensityMFT.cxx:2968:25: style: Condition 'countedPrimary' is always true [knownConditionTrueFalse]
PWGLF/Tasks/GlobalEventProperties/PseudorapidityDensityMFT.cxx:453:15: style: Local variable 'x' shadows outer variable [shadowVariable]
PWGLF/Tasks/GlobalEventProperties/PseudorapidityDensityMFT.cxx:481:15: style: Local variable 'x' shadows outer variable [shadowVariable]
PWGLF/Tasks/GlobalEventProperties/PseudorapidityDensityMFT.cxx:1218:12: style: Local variable 'hstat' shadows outer variable [shadowVariable]
PWGLF/Tasks/GlobalEventProperties/PseudorapidityDensityMFT.cxx:1219:13: style: Local variable 'x' shadows outer variable [shadowVariable]
PWGLF/Tasks/GlobalEventProperties/PseudorapidityDensityMFT.cxx:1267:13: style: Local variable 'x' shadows outer variable [shadowVariable]
PWGLF/Tasks/GlobalEventProperties/PseudorapidityDensityMFT.cxx:1587:21: style: Local variable 'phi' shadows outer variable [shadowVariable]
PWGLF/Tasks/GlobalEventProperties/PseudorapidityDensityMFT.cxx:273:24: style: struct member 'PseudorapidityDensityMFT::OrphanAmbDegree' is never used. [unusedStructMember]
PWGLF/Tasks/GlobalEventProperties/PseudorapidityDensityMFT.cxx:274:24: style: struct member 'PseudorapidityDensityMFT::NonAmbiguousAmbDegree' is never used. [unusedStructMember]
PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:883:11: style: Condition '!fullPathCalibDeDxMip.empty()' is always true [knownConditionTrueFalse]
PWGLF/Tasks/GlobalEventProperties/flattenictyPikp.cxx:900:11: style: Condition '!fullPathCalibDeDxPlateau.empty()' is always true [knownConditionTrueFalse]
PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:320:12: style: Local variable 'hstat' shadows outer variable [shadowVariable]
PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:321:13: style: Local variable 'x' shadows outer variable [shadowVariable]
PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:374:12: style: Local variable 'hstat' shadows outer variable [shadowVariable]
PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx:375:13: style: Local variable 'x' shadows outer variable [shadowVariable]
PWGLF/Tasks/GlobalEventProperties/nchStudypp.cxx:251:12: style: Local variable 'hstat' shadows outer variable [shadowVariable]
PWGLF/Tasks/GlobalEventProperties/nchStudypp.cxx:252:13: style: Local variable 'x' shadows outer variable [shadowVariable]
PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:168:12: style: Local variable 'hstat' shadows outer variable [shadowVariable]
PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx:169:13: style: Local variable 'x' shadows outer variable [shadowVariable]
PWGLF/Tasks/GlobalEventProperties/uccZdc.cxx:364:13: style: Local variable 'x' shadows outer variable [shadowVariable]
PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:429:13: style: Condition 'hmpidAbs8cm' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:435:13: style: Condition 'hmpidAbs4cm' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:451:13: style: Condition 'hmpidAbs8cm' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:457:13: style: Condition 'hmpidAbs4cm' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:475:13: style: Condition 'hmpidAbs8cm' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:481:13: style: Condition 'hmpidAbs4cm' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:497:13: style: Condition 'hmpidAbs8cm' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:503:13: style: Condition 'hmpidAbs4cm' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:521:13: style: Condition 'hmpidAbs8cm' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:527:13: style: Condition 'hmpidAbs4cm' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:543:13: style: Condition 'hmpidAbs8cm' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:549:13: style: Condition 'hmpidAbs4cm' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:566:13: style: Condition 'hmpidAbs8cm' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:572:13: style: Condition 'hmpidAbs4cm' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:588:13: style: Condition 'hmpidAbs8cm' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:594:13: style: Condition 'hmpidAbs4cm' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Nuspex/DeuteronInJetsTrgPt.cxx:76:17: style: struct member 'Anonymous0::prefix' is never used. [unusedStructMember]
PWGLF/Tasks/Nuspex/DeuteronInJetsTrgPt.cxx:108:17: style: struct member 'Anonymous1::prefix' is never used. [unusedStructMember]
PWGLF/Tasks/Nuspex/DeuteronInJetsTrgPt.cxx:118:17: style: struct member 'Anonymous2::prefix' is never used. [unusedStructMember]
PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:3444:29: style: Local variable 'pdgMom' shadows outer variable [shadowVariable]
PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:3446:31: style: Local variable 'ptMom' shadows outer variable [shadowVariable]
PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:3541:31: style: Local variable 'pdgMom' shadows outer variable [shadowVariable]
PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:3543:33: style: Local variable 'ptMom' shadows outer variable [shadowVariable]
PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:3700:29: style: Local variable 'pdgMom' shadows outer variable [shadowVariable]
PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:3702:31: style: Local variable 'ptMom' shadows outer variable [shadowVariable]
PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx:258:24: style: struct member 'LFNucleiBATask::PDGHyperTriton' is never used. [unusedStructMember]
PWGLF/Tasks/Nuspex/NucleiHistTask.cxx:125:25: style: Local variable 'ptBinning' shadows outer variable [shadowVariable]
PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:1358:25: style: Local variable 'index' shadows outer variable [shadowVariable]
PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx:171:20: style: struct member 'AngularCorrelationsInJets::eventSelection' is never used. [unusedStructMember]
PWGLF/Tasks/Nuspex/hadronnucleicorrelation.cxx:1359:30: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/Tasks/Nuspex/nucleiEbye.cxx:548:173: style: Condition 'candidateV0s[0].globalIndexPos==-999' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Nuspex/nucleiEbye.cxx:548:139: style: Same expression on both sides of '&&'. [duplicateExpression]
PWGLF/Tasks/Nuspex/piKpRAA.cxx:114:26: style: struct member 'PiKpRAA::kMinPtNchSel' is never used. [unusedStructMember]
PWGLF/Tasks/Nuspex/piKpRAA.cxx:115:26: style: struct member 'PiKpRAA::kMaxPtNchSel' is never used. [unusedStructMember]
PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:196:9: style: Condition 'kaontopologhy' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Nuspex/spectraKinkPiKa.cxx:274:11: style: Variable 'kinkPool' can be declared as reference to const [constVariableReference]
PWGLF/Tasks/Nuspex/spectraTOF.cxx:2149:15: warning: Identical inner 'if' condition is always true. [identicalInnerCondition]
PWGLF/Tasks/Nuspex/spectraTOF.cxx:2714:29: style: Same expression on both sides of '&&' because 'hasParticleInFT0C' and 'hasParticleInFT0A' represent the same value. [knownConditionTrueFalse]
PWGLF/Tasks/QC/efficiencyQA.cxx:716:34: style: Local variable 'dcaInfo' shadows outer variable [shadowVariable]
PWGLF/Tasks/QC/efficiencyQA.cxx:553:32: style: Local variable 'dcaInfo' shadows outer variable [shadowVariable]
PWGLF/Tasks/QC/efficiencyQA.cxx:606:21: style: Local variable 'nCand' shadows outer variable [shadowVariable]
PWGLF/Tasks/QC/mcParticlePrediction.cxx:75:26: style: struct member 'Estimators::ZEM1' is never used. [unusedStructMember]
PWGLF/Tasks/QC/mcParticlePrediction.cxx:76:26: style: struct member 'Estimators::ZEM2' is never used. [unusedStructMember]
PWGLF/Tasks/QC/mcParticlePrediction.cxx:77:26: style: struct member 'Estimators::ZPA' is never used. [unusedStructMember]
PWGLF/Tasks/QC/mcParticlePrediction.cxx:78:26: style: struct member 'Estimators::ZPC' is never used. [unusedStructMember]
PWGLF/Tasks/QC/resonanceqa.cxx:123:10: style: struct member 'resonanceqa::genMass' is never used. [unusedStructMember]
PWGLF/Tasks/QC/resonanceqa.cxx:123:28: style: struct member 'resonanceqa::resolution' is never used. [unusedStructMember]
PWGLF/Tasks/QC/straRecoStudy.cxx:693:16: style: Variable 'casc' can be declared as reference to const [constVariableReference]
PWGLF/Tasks/QC/straRecoStudy.cxx:700:16: style: Variable 'casc' can be declared as reference to const [constVariableReference]
PWGLF/Tasks/QC/strangenessTrackingQC.cxx:56:9: style: struct member 'miniCasc::phi' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx:902:38: style: Redundant condition: doprocessMC. '!doprocessMC || (doprocessMC && mcCfgs.doBkgMc)' is equivalent to '!doprocessMC || mcCfgs.doBkgMc' [redundantCondition]
PWGLF/Tasks/Resonances/chk892Flow.cxx:1027:20: style: Local variable 'lPhiMinusPsiKstar' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/chk892Flow.cxx:1028:20: style: Local variable 'resoFlowValue' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/chk892Flow.cxx:91:40: style: struct member 'Chk892Flow::hN1NoCut' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/chk892Flow.cxx:92:40: style: struct member 'Chk892Flow::hN1Pass' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/chk892Flow.cxx:94:32: style: struct member 'Chk892Flow::cutTag' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/chk892Flow.cxx:101:27: style: struct member 'Chk892Flow::NCuts' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/chk892pp.cxx:731:19: style: Local variable 'lCentrality' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/chk892pp.cxx:784:19: style: Local variable 'lCentrality' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/chk892pp.cxx:809:19: style: Local variable 'lCentrality' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/chk892pp.cxx:829:19: style: Local variable 'lCentrality' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/chk892pp.cxx:955:19: style: Local variable 'lCentrality' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/chk892pp.cxx:992:19: style: Local variable 'lCentrality' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/chk892pp.cxx:1059:19: style: Local variable 'lCentrality' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/chk892pp.cxx:1098:19: style: Local variable 'lCentrality' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/chk892pp.cxx:1391:19: style: Local variable 'lCentrality' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/deltaanalysis.cxx:501:26: style: Variable 'motherTrackPion' can be declared as reference to const [constVariableReference]
PWGLF/Tasks/Resonances/doublephimeson.cxx:257:25: style: Condition 'ptcand>=1.0' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Resonances/doublephimeson.cxx:294:25: style: Condition 'ptcand>=0.4' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Resonances/doublephimeson.cxx:306:20: style: Condition 'ptcand>=0.5' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Resonances/doublephimeson.cxx:337:25: style: Condition 'ptcand>=0.4' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Resonances/doublephimeson.cxx:361:22: style: Condition 'ptcand>=0.5' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Resonances/doublephimeson.cxx:1318:26: style: Local variable 'pair' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:585:40: style: Local variable 'angle' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:724:14: style: Local variable 'eventPlaneDet' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx:215:10: style: struct member 'F0980pbpbanalysis::angle' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/higherMassResonances.cxx:435:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/Tasks/Resonances/higherMassResonances.cxx:450:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/Tasks/Resonances/higherMassResonances.cxx:463:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/Tasks/Resonances/higherMassResonances.cxx:515:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/Tasks/Resonances/higherMassResonances.cxx:530:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/Tasks/Resonances/higherMassResonances.cxx:543:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/Tasks/Resonances/higherMassResonances.cxx:1137:18: style: Local variable 'theta2' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/higherMassResonances.cxx:1264:26: style: Local variable 'deltaMass' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/higherMassResonances.cxx:1465:10: style: Local variable 'multiplicityGen' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/higherMassResonances.cxx:1536:10: style: Local variable 'multiplicity' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/higherMassResonances.cxx:1805:18: style: Local variable 'theta2' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/higherMassResonances.cxx:1878:24: style: Local variable 'deltaMass' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/higherMassResonances.cxx:1187:32: style: Parameter 'pair' can be declared as reference to const [constParameterReference]
PWGLF/Tasks/Resonances/higherMassResonances.cxx:1583:16: style: Variable 'nTPCSigmaPos1' can be declared as const array [constVariable]
PWGLF/Tasks/Resonances/higherMassResonances.cxx:1584:16: style: Variable 'nTPCSigmaNeg1' can be declared as const array [constVariable]
PWGLF/Tasks/Resonances/higherMassResonances.cxx:1585:16: style: Variable 'nTPCSigmaPos2' can be declared as const array [constVariable]
PWGLF/Tasks/Resonances/higherMassResonances.cxx:1586:16: style: Variable 'nTPCSigmaNeg2' can be declared as const array [constVariable]
PWGLF/Tasks/Resonances/highmasslambda.cxx:640:31: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/Tasks/Resonances/highmasslambda.cxx:67:7: style: struct member 'highmasslambda::multEstimator' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:66:7: style: struct member 'highmasslambdasvx::mRunNumber' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:67:7: style: struct member 'highmasslambdasvx::multEstimator' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:68:9: style: struct member 'highmasslambdasvx::d_bz' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/k1analysis.cxx:90:13: style: struct member 'K1analysis::nSteps' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/k892hadronphoton.cxx:582:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:205:16: style: Condition 'isMC' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:216:10: style: struct member 'kaonkaonAnalysisRun3::rapidity' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:216:25: style: struct member 'kaonkaonAnalysisRun3::mass' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:216:35: style: struct member 'kaonkaonAnalysisRun3::massrotation1' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:216:54: style: struct member 'kaonkaonAnalysisRun3::massrotation2' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/kaonkaonanalysis.cxx:216:73: style: struct member 'kaonkaonAnalysisRun3::pT' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/kstar892LightIon.cxx:544:16: style: Expression is always true because 'else if' condition is opposite to previous condition at line 511. [multiCondition]
PWGLF/Tasks/Resonances/kstar892LightIon.cxx:791:18: style: Condition 'isMix' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Resonances/kstar892LightIon.cxx:1761:11: style: Local variable 'centrality' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/kstar892LightIon.cxx:1134:32: style: Parameter 'pair' can be declared as reference to const [constParameterReference]
PWGLF/Tasks/Resonances/kstar892LightIon.cxx:1207:32: style: Parameter 'pair' can be declared as reference to const [constParameterReference]
PWGLF/Tasks/Resonances/kstarFlowv1.cxx:283:28: style: Condition '!track2pion' is always false [knownConditionTrueFalse]
PWGLF/Tasks/Resonances/kstarInOO.cxx:1059:18: style: Condition 'RT' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Resonances/kstarpbpb.cxx:603:28: style: Condition '!track2pion' is always false [knownConditionTrueFalse]
PWGLF/Tasks/Resonances/kstarqa.cxx:581:16: style: Expression is always true because 'else if' condition is opposite to previous condition at line 547. [multiCondition]
PWGLF/Tasks/Resonances/kstarqa.cxx:986:20: style: Condition 'isMix' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Resonances/kstarqa.cxx:1018:20: style: Condition 'isMix' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Resonances/kstarqa.cxx:1049:20: style: Condition 'isMix' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Resonances/kstarqa.cxx:1081:20: style: Condition 'isMix' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Resonances/kstarqa.cxx:1912:11: style: Local variable 'multiplicity' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/kstarqa.cxx:2879:11: style: Local variable 'multiplicity' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/kstarqa.cxx:1304:32: style: Parameter 'pair' can be declared as reference to const [constParameterReference]
PWGLF/Tasks/Resonances/kstarqa.cxx:1397:32: style: Parameter 'pair' can be declared as reference to const [constParameterReference]
PWGLF/Tasks/Resonances/kstarqa.cxx:2662:32: style: Parameter 'pair' can be declared as reference to const [constParameterReference]
PWGLF/Tasks/Resonances/kstarqa.cxx:921:24: style: struct member 'Kstarqa::pvec0' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/kstarqa.cxx:922:24: style: struct member 'Kstarqa::pvec1' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/lambda1520analysis.cxx:413:20: style: Expression is always true because 'else if' condition is opposite to previous condition at line 409. [multiCondition]
PWGLF/Tasks/Resonances/lambda1520analysis.cxx:426:22: style: Expression is always true because 'else if' condition is opposite to previous condition at line 422. [multiCondition]
PWGLF/Tasks/Resonances/lambda1520analysis.cxx:434:22: style: Expression is always true because 'else if' condition is opposite to previous condition at line 430. [multiCondition]
PWGLF/Tasks/Resonances/lambda1520analysis.cxx:465:20: style: Expression is always true because 'else if' condition is opposite to previous condition at line 461. [multiCondition]
PWGLF/Tasks/Resonances/lambda1520analysis.cxx:478:22: style: Expression is always true because 'else if' condition is opposite to previous condition at line 474. [multiCondition]
PWGLF/Tasks/Resonances/lambda1520analysis.cxx:486:22: style: Expression is always true because 'else if' condition is opposite to previous condition at line 482. [multiCondition]
PWGLF/Tasks/Resonances/lambda1520analysis.cxx:827:18: style: Condition '!cOldPIDcut' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Resonances/lambdav2.cxx:52:7: style: struct member 'lambdav2::mRunNumber' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/lambdav2.cxx:53:7: style: struct member 'lambdav2::multEstimator' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/lambdav2.cxx:54:9: style: struct member 'lambdav2::d_bz' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/lstarpbpbv2.cxx:469:28: style: Condition '!track2proton' is always false [knownConditionTrueFalse]
PWGLF/Tasks/Resonances/phi1020analysis.cxx:648:16: style: Variable 'recocoll' can be declared as reference to const [constVariableReference]
PWGLF/Tasks/Resonances/phianalysisTHnSparse.cxx:157:90: style: struct member 'PhianalysisTHnSparse::MCTruthQA' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/phianalysisrun3.cxx:106:16: style: Condition 'isMC' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Resonances/phianalysisrun3.cxx:116:28: style: struct member 'phianalysisrun3::resolution' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:195:16: style: Condition 'isMC' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:615:15: style: Local variable 'track1Sign' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:641:15: style: Local variable 'track1Sign' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:1949:34: style: Local variable 'pvec0' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:1950:34: style: Local variable 'pvec1' shadows outer variable [shadowVariable]
PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:300:28: style: struct member 'phianalysisrun3_PbPb::resolution' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:304:10: style: struct member 'phianalysisrun3_PbPb::massrotation' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/phianalysisrun3_PbPb.cxx:308:19: style: struct member 'phianalysisrun3_PbPb::pvec1rotation' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/phipbpb.cxx:70:7: style: struct member 'phipbpb::mRunNumber' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/phipbpb.cxx:71:7: style: struct member 'phipbpb::multEstimator' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/phipbpb.cxx:72:9: style: struct member 'phipbpb::d_bz' is never used. [unusedStructMember]
PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx:462:23: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/Tasks/Resonances/rho770analysis.cxx:217:18: style: Expression is always true because 'else if' condition is opposite to previous condition at line 214. [multiCondition]
PWGLF/Tasks/Resonances/rho770analysis.cxx:246:18: style: Expression is always true because 'else if' condition is opposite to previous condition at line 243. [multiCondition]
PWGLF/Tasks/Resonances/sigma.cxx:322:14: style: Variable 'nTPCSigmaPos' can be declared as const array [constVariable]
PWGLF/Tasks/Resonances/sigma.cxx:323:14: style: Variable 'nTPCSigmaNeg' can be declared as const array [constVariable]
PWGLF/Tasks/Resonances/sigma.cxx:402:16: style: Variable 'nTPCSigmaPos' can be declared as const array [constVariable]
PWGLF/Tasks/Resonances/sigma.cxx:403:16: style: Variable 'nTPCSigmaNeg' can be declared as const array [constVariable]
PWGLF/Tasks/Strangeness/cascadeAnalysisLightIonsDerivedData.cxx:1064:11: style: Condition 'isPhysPrim' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Strangeness/cascpolsp.cxx:434:12: style: Redundant initialization for 'tagb'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGLF/Tasks/Strangeness/cascpolsp.cxx:296:10: style: Local variable 'fourVecDauCM' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/cascpolsp.cxx:297:10: style: Local variable 'phiangle' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/cascpostprocessing.cxx:469:18: style: Condition '!isXi' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:1020:9: style: Assignment of function parameter has no effect outside the function. [uselessAssignmentArg]
PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:826:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:1416:13: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:1424:13: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:932:15: style: Local variable 'cut' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/derivedcascadeanalysis.cxx:251:37: style: struct member 'Derivedcascadeanalysis::kCharge' is never used. [unusedStructMember]
PWGLF/Tasks/Strangeness/derivedupcanalysis.cxx:1206:16: style: Redundant initialization for 'selGapSide'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:687:47: style: Parameter 'trigg' can be declared as pointer to const [constParameterPointer]
PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx:687:62: style: Parameter 'assoc' can be declared as pointer to const [constParameterPointer]
PWGLF/Tasks/Strangeness/k0_mixed_events.cxx:523:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:2493:27: warning: Identical condition 'pdgMother==3312', second condition is always false [identicalConditionAfterEarlyExit]
PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:1458:9: style: Condition '!isAtLeastOneJetSelected' is always false [knownConditionTrueFalse]
PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:1874:9: style: Condition '!isAtLeastOneJetSelected' is always false [knownConditionTrueFalse]
PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx:2288:11: style: Condition '!isAtLeastOneJetSelected' is always false [knownConditionTrueFalse]
PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx:230:16: style: Expression is always true because 'else if' condition is opposite to previous condition at line 225. [multiCondition]
PWGLF/Tasks/Strangeness/lambdak0seff.cxx:59:7: style: struct member 'lambdak0seff::mRunNumber' is never used. [unusedStructMember]
PWGLF/Tasks/Strangeness/lambdak0seff.cxx:63:9: style: struct member 'lambdak0seff::hwgtAL' is never used. [unusedStructMember]
PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:644:20: style: Condition 'iCh>=8' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:670:24: style: Condition 'iCh==4' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:684:24: style: Condition 'iCh==12' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:698:24: style: Condition 'iCh==20' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx:712:24: style: Condition 'iCh==28' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:113:20: style: Variable 'particleMotherOfPos' can be declared as reference to const [constVariableReference]
PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:251:28: style: Variable 'particleMotherOfPos' can be declared as reference to const [constVariableReference]
PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:284:28: style: Variable 'particleMotherOfPos' can be declared as reference to const [constVariableReference]
PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:322:28: style: Variable 'particleMotherOfPos' can be declared as reference to const [constVariableReference]
PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:379:26: style: Variable 'particleMotherOfPos' can be declared as reference to const [constVariableReference]
PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:411:26: style: Variable 'particleMotherOfPos' can be declared as reference to const [constVariableReference]
PWGLF/Tasks/Strangeness/lambdalambda.cxx:454:18: style: Condition 'aLambdaTag' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Strangeness/lambdapolarization.cxx:447:16: style: Expression is always true because 'else if' condition is opposite to previous condition at line 442. [multiCondition]
PWGLF/Tasks/Strangeness/lambdapolsp.cxx:1311:14: style: Redundant initialization for 'tagb'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGLF/Tasks/Strangeness/lambdapolsp.cxx:1610:12: style: Redundant initialization for 'tagb'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGLF/Tasks/Strangeness/lambdapolsp.cxx:747:10: style: Local variable 'fourVecDauCM' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/lambdapolsp.cxx:748:10: style: Local variable 'phiangle' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/lambdapolsp.cxx:74:7: style: struct member 'lambdapolsp::mRunNumber' is never used. [unusedStructMember]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:957:22: style: Local variable 'proton' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:959:22: style: Local variable 'lambda' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:961:22: style: Local variable 'proton2' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:963:22: style: Local variable 'lambda2' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:984:22: style: Local variable 'proton' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:986:22: style: Local variable 'lambda' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:988:22: style: Local variable 'proton2' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:990:22: style: Local variable 'lambda2' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1746:18: style: Local variable 'proton' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1747:18: style: Local variable 'lambda' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1748:18: style: Local variable 'proton2' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1749:18: style: Local variable 'lambda2' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1779:18: style: Local variable 'proton' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1780:18: style: Local variable 'lambda' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1781:18: style: Local variable 'proton2' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1782:18: style: Local variable 'lambda2' shadows outer variable [shadowVariable]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:913:22: style: Variable 'tX' can be declared as reference to const [constVariableReference]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:943:20: style: Variable 'pv' can be declared as reference to const [constVariableReference]
PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:997:31: style: Iterating over container 'mcptvec' that is always empty. [knownEmptyContainer]
PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:76:11: style: struct member 'NPCascCandidate::trackGlobID' is never used. [unusedStructMember]
PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:77:11: style: struct member 'NPCascCandidate::trackITSID' is never used. [unusedStructMember]
PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:308:25: style: Unused variable: multBinning [unusedVariable]
PWGLF/Tasks/Strangeness/nonPromptCascade.cxx:941:28: style: Unused variable: tmp [unusedVariable]
PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:457:10: style: Variable 'doAssocCorrelations' can be declared as const array [constVariable]
PWGLF/Tasks/Strangeness/phiStrangeCorrelation.cxx:1128:32: style: Variable 'currentAssocParticles' can be declared as const array [constVariable]
PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:3413:13: style: The statement 'if (!isCountedPhi) isCountedPhi=true' is logically equivalent to 'isCountedPhi=true'. [duplicateConditionalAssign]
PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:2667:13: style: Variable 'collIndexesThisMcColl' can be declared as reference to const [constVariableReference]
PWGLF/Tasks/Strangeness/phik0shortanalysis.cxx:3162:13: style: Variable 'collIndexesThisMcColl' can be declared as reference to const [constVariableReference]
PWGLF/Tasks/Strangeness/sigmaanalysis.cxx:772:9: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGLF/Tasks/Strangeness/strangenessderivedbinnedinfo.cxx:235:38: style: struct member 'strangenessderivedbinnedinfo::metadata' is never used. [unusedStructMember]
PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:793:15: style: Condition 'pairfound' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:1136:15: style: Condition 'pairfound' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Strangeness/taskLambdaSpinCorr.cxx:1346:15: style: Condition 'pairfound' is always true [knownConditionTrueFalse]
PWGLF/Tasks/Strangeness/vzero_cascade_absorption.cxx:498:22: style: Variable 'particleMotherOfPos' can be declared as reference to const [constVariableReference]
PWGLF/Tasks/Strangeness/zdccalderived.cxx:551:45: style: Condition 'check==0' is always false [knownConditionTrueFalse]
PWGLF/Tasks/Strangeness/zdccalderived.cxx:237:9: style: struct member 'zdccalderived::gainprofile' is never used. [unusedStructMember]
PWGLF/Tasks/Strangeness/zdccalderived.cxx:238:13: style: struct member 'zdccalderived::gainprofilevxy' is never used. [unusedStructMember]
PWGLF/Utils/decay3bodyBuilderHelper.h:98:3: warning: Member variable 'decay3bodyBuilderHelper::decay3body' is not initialized in the constructor. [uninitMemberVar]
PWGLF/Utils/decay3bodyBuilderHelper.h:98:3: warning: Member variable 'decay3bodyBuilderHelper::decay3bodyselections' is not initialized in the constructor. [uninitMemberVar]
PWGLF/Utils/decay3bodyBuilderHelper.h:98:3: warning: Member variable 'decay3bodyBuilderHelper::svertexerselections' is not initialized in the constructor. [uninitMemberVar]
PWGLF/Utils/decay3bodyBuilderHelper.h:885:9: style: Unused private function: 'decay3bodyBuilderHelper::CalculateDCAStraightToPV' [unusedPrivateFunction]
PWGLF/Utils/nucleiUtils.h:472:3: warning: Member variable 'PidManager::mTpcBetheBlochParams' is not initialized in the constructor. [uninitMemberVar]
PWGLF/Utils/nucleiUtils.h:472:3: warning: Member variable 'PidManager::mSpecies' is not initialized in the constructor. [uninitMemberVar]
PWGLF/Utils/nucleiUtils.h:385:5: style: Statements following 'return' will never be executed. [unreachableCode]
PWGLF/Utils/nucleiUtils.h:422:10: style: Instance of 'std::runtime_error' object is destroyed immediately. [unusedScopedObject]
PWGLF/Utils/nucleiUtils.h:460:12: style: Instance of 'std::runtime_error' object is destroyed immediately. [unusedScopedObject]
PWGLF/Utils/pidTOFGeneric.h:319:3: warning: Member variable 'TOFCalibConfig::mTimestamp' is not initialized. [uninitMemberVarPrivate]
PWGLF/Utils/pidTOFGeneric.h:328:3: warning: Member variable 'TOFCalibConfig::mFatalOnPassNotAvailable' is not initialized. [uninitMemberVarPrivate]
PWGLF/Utils/pidTOFGeneric.h:329:3: warning: Member variable 'TOFCalibConfig::mEnableTimeDependentResponse' is not initialized. [uninitMemberVarPrivate]
PWGLF/Utils/pidTOFGeneric.h:330:3: warning: Member variable 'TOFCalibConfig::mCollisionSystem' is not initialized. [uninitMemberVarPrivate]
PWGLF/Utils/pidTOFGeneric.h:331:3: warning: Member variable 'TOFCalibConfig::mAutoSetProcessFunctions' is not initialized. [uninitMemberVarPrivate]
PWGLF/Utils/pidTOFGeneric.h:71:74: performance: Function parameter 'name' should be passed by const reference. [passedByValue]
PWGLF/Utils/pidTOFGeneric.h:71:108: performance: Function parameter 'task' should be passed by const reference. [passedByValue]
PWGLF/Utils/pidTOFGeneric.h:78:87: performance: Function parameter 'task' should be passed by const reference. [passedByValue]
PWGLF/Utils/rsnOutput.h:296:5: style: The function 'fill' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride]
PWGLF/Utils/rsnOutput.h:307:16: style: The function 'fill' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride]
PWGLF/Utils/rsnOutput.h:345:16: style: The function 'fillUnlikepm' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride]
PWGLF/Utils/rsnOutput.h:349:16: style: The function 'fillUnlikemp' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride]
PWGLF/Utils/rsnOutput.h:353:16: style: The function 'fillLikepp' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride]
PWGLF/Utils/rsnOutput.h:357:16: style: The function 'fillLikemm' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride]
PWGLF/Utils/rsnOutput.h:361:16: style: The function 'fillUnliketrue' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride]
PWGLF/Utils/rsnOutput.h:365:16: style: The function 'fillUnlikegen' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride]
PWGLF/Utils/rsnOutput.h:369:16: style: The function 'fillUnlikegenOld' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride]
PWGLF/Utils/rsnOutput.h:373:16: style: The function 'fillMixingpm' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride]
PWGLF/Utils/rsnOutput.h:377:16: style: The function 'fillMixingmp' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride]
PWGLF/Utils/rsnOutput.h:381:16: style: The function 'fillRotationpm' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride]
PWGLF/Utils/rsnOutput.h:385:16: style: The function 'fillSystematics' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride]
PWGLF/Utils/rsnOutput.h:83:39: performance: Function parameter 'name' should be passed by const reference. [passedByValue]
PWGLF/Utils/strangenessBuilderHelper.h:243:3: warning: Member variable 'strangenessBuilderHelper::v0' is not initialized in the constructor. [uninitMemberVar]
PWGLF/Utils/strangenessBuilderHelper.h:243:3: warning: Member variable 'strangenessBuilderHelper::cascade' is not initialized in the constructor. [uninitMemberVar]
PWGLF/Utils/strangenessBuilderHelper.h:243:3: warning: Member variable 'strangenessBuilderHelper::cascadeselections' is not initialized in the constructor. [uninitMemberVar]
PWGLF/Utils/strangenessBuilderHelper.h:903:21: style: Local variable 'MomInd' shadows outer variable [shadowVariable]
PWGLF/Utils/strangenessBuilderModule.h:388:3: warning: Member variable 'BuilderModule::mRunNumber' is not initialized in the constructor. [uninitMemberVar]
PWGLF/Utils/strangenessBuilderModule.h:388:3: warning: Member variable 'BuilderModule::thisCascInfo' is not initialized in the constructor. [uninitMemberVar]
PWGLF/Utils/strangenessBuilderModule.h:538:11: style: Variable 'workflows' can be declared as reference to const [constVariableReference]
PWGLF/Utils/svPoolCreator.h:50:3: warning: Member variable 'svPoolCreator::track0Pdg' is not initialized in the constructor. [uninitMemberVar]
PWGLF/Utils/svPoolCreator.h:50:3: warning: Member variable 'svPoolCreator::track1Pdg' is not initialized in the constructor. [uninitMemberVar]
PWGLF/Utils/svPoolCreator.h:50:3: warning: Member variable 'svPoolCreator::trForpool' is not initialized in the constructor. [uninitMemberVar]
PWGLF/Utils/svPoolCreator.h:51:3: warning: Member variable 'svPoolCreator::trForpool' is not initialized in the constructor. [uninitMemberVar]
PWGLF/Utils/svPoolCreator.h:76:41: performance: Function 'getTrackCandPool()' should return member 'trackCandPool' by const reference. [returnByReference]
PWGLF/Utils/v0SelectionGroup.cxx:43:47: style: Operator '|' with one operand equal to zero is redundant. [badBitmaskCheck]
PWGLF/Utils/v0SelectionGroup.cxx:45:47: style: Operator '|' with one operand equal to zero is redundant. [badBitmaskCheck]
PWGMM/Lumi/Tasks/fitLumi.cxx:45:13: style: struct member 'VdMAO2D::CollidingBunch' is never used. [unusedStructMember]
PWGMM/Lumi/Tasks/fitLumi.cxx:46:20: style: struct member 'VdMAO2D::collBCArrayFromCCDB' is never used. [unusedStructMember]
PWGMM/Lumi/Tasks/fitLumi.cxx:51:7: style: struct member 'VdMAO2D::relTS' is never used. [unusedStructMember]
PWGMM/Lumi/Tasks/lumiStability.cxx:643:49: style: inconclusive: Boolean expression 'pastActivityFDDVertexCoincidences' is used in bitwise operation. [bitwiseOnBoolean]
PWGMM/Lumi/Tasks/lumiStability.cxx:643:64: style: inconclusive: Boolean expression 'vertexPast' is used in bitwise operation. Did you mean '&&'? [bitwiseOnBoolean]
PWGMM/Lumi/Tasks/lumiStability.cxx:643:78: style: inconclusive: Boolean expression 'isCoinCPast' is used in bitwise operation. Did you mean '&&'? [bitwiseOnBoolean]
PWGMM/Lumi/Tasks/lumiStability.cxx:644:51: style: inconclusive: Boolean expression 'pastActivityFDDTriggerACoincidenceA' is used in bitwise operation. [bitwiseOnBoolean]
PWGMM/Lumi/Tasks/lumiStability.cxx:644:68: style: inconclusive: Boolean expression 'triggerAPast' is used in bitwise operation. Did you mean '&&'? [bitwiseOnBoolean]
PWGMM/Lumi/Tasks/lumiStability.cxx:645:51: style: inconclusive: Boolean expression 'pastActivityFDDTriggerCCoincidenceC' is used in bitwise operation. [bitwiseOnBoolean]
PWGMM/Lumi/Tasks/lumiStability.cxx:645:68: style: inconclusive: Boolean expression 'triggerCPast' is used in bitwise operation. Did you mean '&&'? [bitwiseOnBoolean]
PWGMM/Lumi/Tasks/lumiStability.cxx:285:56: style: Condition 'executionCounter<1' is always true [knownConditionTrueFalse]
PWGMM/Lumi/Tasks/lumiStability.cxx:278:14: style: Local variable 'nOrbitsPerTF' shadows outer variable [shadowVariable]
PWGMM/Lumi/Tasks/lumiStability.cxx:608:15: style: Local variable 'deltaIndex' shadows outer variable [shadowVariable]
PWGMM/Lumi/Tasks/lumiStability.cxx:609:15: style: Local variable 'deltaBC' shadows outer variable [shadowVariable]
PWGMM/Lumi/Tasks/lumiStability.cxx:631:19: style: Local variable 'maxNChanels' shadows outer variable [shadowVariable]
PWGMM/Lumi/Tasks/lumiStability.cxx:881:28: style: Local variable 'fv0Triggers' shadows outer variable [shadowVariable]
PWGMM/Lumi/Tasks/lumiStability.cxx:906:28: style: Local variable 'fv0Triggers' shadows outer variable [shadowVariable]
PWGMM/Lumi/Tasks/lumiStability.cxx:336:29: style: Variable 'par' can be declared as pointer to const [constVariablePointer]
PWGMM/Lumi/macros/merger.C:58:32: style: C-style pointer casting [cstyleCast]
PWGMM/Lumi/macros/merger.C:59:12: style: C-style pointer casting [cstyleCast]
PWGMM/Lumi/macros/merger.C:33:10: style: Variable 'list' can be declared as pointer to const [constVariablePointer]
PWGMM/Lumi/macros/non_fac.C:53:9: style: C-style pointer casting [cstyleCast]
PWGMM/Lumi/macros/non_fac.C:135:9: style: C-style pointer casting [cstyleCast]
PWGMM/Lumi/macros/non_fac.C:48:18: style: Parameter 'npar' can be declared as reference to const. However it seems that 'chi2' is a callback function, if 'npar' is declared with const you might also need to cast function pointer(s). [constParameterCallback]
PWGMM/Lumi/macros/non_fac.C:111:10: style: Variable 'TMIN' can be declared as const array [constVariable]
PWGMM/Lumi/macros/non_fac.C:112:10: style: Variable 'TMAX' can be declared as const array [constVariable]
PWGMM/Lumi/macros/non_fac.C:232:10: style: Variable 'fout' can be declared as pointer to const [constVariablePointer]
PWGMM/Mult/TableProducer/reducer.cxx:234:20: style: Variable 'c' can be declared as reference to const [constVariableReference]
PWGMM/Mult/Tasks/dndeta-hi.cxx:365:30: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGMM/Mult/Tasks/dndeta-hi.cxx:838:15: style: Condition '0&&v0.v0radius()>v0radius' is always false [knownConditionTrueFalse]
PWGMM/Mult/Tasks/dndeta-hi.cxx:523:14: style: Local variable 'cent' shadows outer variable [shadowVariable]
PWGMM/Mult/Tasks/dndeta-hi.cxx:606:19: style: Local variable 'pid' shadows outer variable [shadowVariable]
PWGMM/Mult/Tasks/dndeta-hi.cxx:204:20: style: struct member 'MultiplicityCounter::usedTracksIds' is never used. [unusedStructMember]
PWGMM/Mult/Tasks/dndeta-hi.cxx:310:25: style: struct member 'MultiplicityCounter::tracketas' is never used. [unusedStructMember]
PWGMM/Mult/Tasks/dndeta-mft.cxx:324:21: style: Redundant condition: useEvSel. '!A || (A && B)' is equivalent to '!A || B' [redundantCondition]
PWGMM/Mult/Tasks/dndeta-mft.cxx:383:19: style: Redundant condition: useEvSel. '!useEvSel || (useEvSel && collision.sel8())' is equivalent to '!useEvSel || collision.sel8()' [redundantCondition]
PWGMM/Mult/Tasks/dndeta-mft.cxx:443:19: style: Redundant condition: useEvSel. '!useEvSel || (useEvSel && collision.sel8())' is equivalent to '!useEvSel || collision.sel8()' [redundantCondition]
PWGMM/Mult/Tasks/dndeta-mft.cxx:617:21: style: Redundant condition: useEvSel. '!useEvSel || (useEvSel && collision.sel8())' is equivalent to '!useEvSel || collision.sel8()' [redundantCondition]
PWGMM/Mult/Tasks/dndeta-mft.cxx:709:21: style: Redundant condition: useEvSel. '!useEvSel || (useEvSel && collision.sel8())' is equivalent to '!useEvSel || collision.sel8()' [redundantCondition]
PWGMM/Mult/Tasks/dndeta-mft.cxx:787:19: style: Redundant condition: useEvSel. '!useEvSel || (useEvSel && collision.sel8())' is equivalent to '!useEvSel || collision.sel8()' [redundantCondition]
PWGMM/Mult/Tasks/dndeta-mft.cxx:243:12: style: Local variable 'hstat' shadows outer variable [shadowVariable]
PWGMM/Mult/Tasks/dndeta-mft.cxx:244:13: style: Local variable 'x' shadows outer variable [shadowVariable]
PWGMM/Mult/Tasks/dndeta-mft.cxx:292:13: style: Local variable 'x' shadows outer variable [shadowVariable]
PWGMM/Mult/Tasks/dndeta.cxx:407:20: style: Variable 'colid' can be declared as reference to const [constVariableReference]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:3869:34: style: Expression is always true because 'else if' condition is opposite to previous condition at line 3867. [multiCondition]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:4013:34: style: Expression is always true because 'else if' condition is opposite to previous condition at line 3998. [multiCondition]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:4992:41: style: Expression is always false because 'else if' condition matches previous condition at line 4968. [multiCondition]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:5126:36: style: Expression is always true because 'else if' condition is opposite to previous condition at line 5120. [multiCondition]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:4292:13: style: Condition 'isRecGood' is always false [knownConditionTrueFalse]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:4315:15: style: Condition 'isRecGood' is always false [knownConditionTrueFalse]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:4339:15: style: Condition 'isRecGood' is always false [knownConditionTrueFalse]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:2777:16: style: Condition 'cGen<0' is always true [knownConditionTrueFalse]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:2574:16: style: Condition 'cGen<0' is always true [knownConditionTrueFalse]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:2264:15: style: Local variable 'phi' shadows outer variable [shadowVariable]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:3621:15: style: Local variable 'phi' shadows outer variable [shadowVariable]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:3793:40: style: Local variable 'mapVtxXgen' shadows outer variable [shadowVariable]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:3796:40: style: Local variable 'mapVtxYgen' shadows outer variable [shadowVariable]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:3799:40: style: Local variable 'mapVtxZgen' shadows outer variable [shadowVariable]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:4122:40: style: Local variable 'mapVtxXgen' shadows outer variable [shadowVariable]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:4124:40: style: Local variable 'mapVtxYgen' shadows outer variable [shadowVariable]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:4126:40: style: Local variable 'mapVtxZgen' shadows outer variable [shadowVariable]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:4464:27: style: Local variable 'collision' shadows outer variable [shadowVariable]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:4465:27: style: Local variable 'mcCollision' shadows outer variable [shadowVariable]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:4901:18: style: Local variable 'mcCollision' shadows outer argument [shadowArgument]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:4602:18: style: Local variable 'collision' shadows outer variable [shadowVariable]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:3045:34: style: Local variable 'track' shadows outer variable [shadowVariable]
PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx:3050:34: style: Local variable 'track' shadows outer variable [shadowVariable]
PWGMM/Mult/Tasks/effpt-mft.cxx:84:19: style: Redundant condition: useEvSel. '!useEvSel || (useEvSel && collision.sel8())' is equivalent to '!useEvSel || collision.sel8()' [redundantCondition]
PWGMM/Mult/Tasks/effpt-mft.cxx:105:21: style: Redundant condition: useEvSel. '!useEvSel || (useEvSel && collision.sel8())' is equivalent to '!useEvSel || collision.sel8()' [redundantCondition]
PWGMM/Mult/Tasks/effpt-mft.cxx:139:23: style: Redundant condition: useEvSel. '!useEvSel || (useEvSel && collision.sel8())' is equivalent to '!useEvSel || collision.sel8()' [redundantCondition]
PWGMM/Mult/Tasks/flatenicityFV0.cxx:186:21: style: Condition 'i_ch>=8' is always true [knownConditionTrueFalse]
PWGMM/Mult/Tasks/flatenicityFV0.cxx:211:25: style: Condition 'i_ch==4' is always true [knownConditionTrueFalse]
PWGMM/Mult/Tasks/flatenicityFV0.cxx:225:25: style: Condition 'i_ch==12' is always true [knownConditionTrueFalse]
PWGMM/Mult/Tasks/flatenicityFV0.cxx:239:25: style: Condition 'i_ch==20' is always true [knownConditionTrueFalse]
PWGMM/Mult/Tasks/flatenicityFV0.cxx:253:25: style: Condition 'i_ch==28' is always true [knownConditionTrueFalse]
PWGMM/Mult/Tasks/flatenicityFV0.cxx:292:30: style: Parameter 'signals' can be declared as const array [constParameter]
PWGMM/Mult/Tasks/flatenicityFV0.cxx:354:11: style: Variable 'weigthsEta5' can be declared as const array [constVariable]
PWGMM/Mult/Tasks/flatenicityFV0.cxx:355:11: style: Variable 'deltaEeta5' can be declared as const array [constVariable]
PWGMM/Mult/Tasks/flatenicityFV0.cxx:359:11: style: Variable 'weigthsEta6' can be declared as const array [constVariable]
PWGMM/Mult/Tasks/flatenicityFV0.cxx:360:11: style: Variable 'deltaEeta6' can be declared as const array [constVariable]
PWGMM/Mult/Tasks/flatenicityFV0.cxx:364:11: style: Variable 'calib' can be declared as const array [constVariable]
PWGMM/Mult/Tasks/flatenicityFV0.cxx:366:11: style: Variable 'calibT0C' can be declared as const array [constVariable]
PWGMM/Mult/Tasks/flatenicityFV0.cxx:368:11: style: Variable 'calibT0A' can be declared as const array [constVariable]
PWGMM/Mult/Tasks/flattenicty-chrg.cxx:273:14: style: Condition 'mRho>0' is always true [knownConditionTrueFalse]
PWGMM/Mult/Tasks/flattenicty-chrg.cxx:254:30: style: Parameter 'signals' can be declared as const array [constParameter]
PWGMM/Mult/Tasks/flattenicty-chrg.cxx:504:11: style: Variable 'weightsEta' can be declared as const array [constVariable]
PWGMM/Mult/Tasks/flattenicty-chrg.cxx:506:11: style: Variable 'deltaEeta' can be declared as const array [constVariable]
PWGMM/Mult/Tasks/mftReassociationValidation.cxx:987:7: style: Statements following 'return' will never be executed. [unreachableCode]
PWGMM/Mult/Tasks/mftReassociationValidation.cxx:1175:14: style: Local variable 'collision' shadows outer argument [shadowArgument]
PWGMM/Mult/Tasks/mftReassociationValidation.cxx:1440:14: style: Local variable 'collision' shadows outer argument [shadowArgument]
PWGMM/Mult/Tasks/pseudoEffMFT.cxx:559:48: style: Parameter 'inChips' can be declared as reference to const [constParameterReference]
PWGMM/Mult/Tasks/run2dndeta.cxx:125:21: style: Redundant condition: useEvSel. '!useEvSel || (useEvSel && collision.sel7())' is equivalent to '!useEvSel || collision.sel7()' [redundantCondition]
PWGMM/Mult/Tasks/run2dndeta.cxx:150:21: style: Redundant condition: useEvSel. '!useEvSel || (useEvSel && collision.sel7())' is equivalent to '!useEvSel || collision.sel7()' [redundantCondition]
PWGMM/Mult/Tasks/run2dndeta.cxx:175:19: style: Redundant condition: useEvSel. '!useEvSel || (useEvSel && collision.sel7())' is equivalent to '!useEvSel || collision.sel7()' [redundantCondition]
PWGMM/Mult/Tasks/run2dndeta.cxx:220:21: style: Redundant condition: useEvSel. '!useEvSel || (useEvSel && collision.sel7())' is equivalent to '!useEvSel || collision.sel7()' [redundantCondition]
PWGUD/AQC/FITtest.cxx:405:11: style: Expression is always true because 'else if' condition is opposite to previous condition at line 380. [multiCondition]
PWGUD/AQC/FITtest.cxx:426:11: style: Expression is always true because 'else if' condition is opposite to previous condition at line 412. [multiCondition]
PWGUD/AQC/FITtest.cxx:455:11: style: Expression is always true because 'else if' condition is opposite to previous condition at line 432. [multiCondition]
PWGUD/AQC/FITtest.cxx:599:11: style: Expression is always true because 'else if' condition is opposite to previous condition at line 585. [multiCondition]
PWGUD/AQC/FITtest.cxx:616:11: style: Expression is always true because 'else if' condition is opposite to previous condition at line 605. [multiCondition]
PWGUD/AQC/FITtest.cxx:635:11: style: Expression is always true because 'else if' condition is opposite to previous condition at line 622. [multiCondition]
PWGUD/AQC/FITtest.cxx:792:11: style: Expression is always true because 'else if' condition is opposite to previous condition at line 778. [multiCondition]
PWGUD/AQC/FITtest.cxx:809:11: style: Expression is always true because 'else if' condition is opposite to previous condition at line 799. [multiCondition]
PWGUD/AQC/FITtest.cxx:828:11: style: Expression is always true because 'else if' condition is opposite to previous condition at line 815. [multiCondition]
PWGUD/AQC/FITtest.cxx:984:11: style: Expression is always true because 'else if' condition is opposite to previous condition at line 971. [multiCondition]
PWGUD/AQC/FITtest.cxx:1000:11: style: Expression is always true because 'else if' condition is opposite to previous condition at line 991. [multiCondition]
PWGUD/AQC/FITtest.cxx:1018:11: style: Expression is always true because 'else if' condition is opposite to previous condition at line 1006. [multiCondition]
PWGUD/AQC/FITtest.cxx:1172:11: style: Expression is always true because 'else if' condition is opposite to previous condition at line 1158. [multiCondition]
PWGUD/AQC/FITtest.cxx:1188:11: style: Expression is always true because 'else if' condition is opposite to previous condition at line 1179. [multiCondition]
PWGUD/AQC/FITtest.cxx:1206:11: style: Expression is always true because 'else if' condition is opposite to previous condition at line 1194. [multiCondition]
PWGUD/AQC/udQC.cxx:310:32: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGUD/AQC/udQCmidRap.cxx:286:32: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGUD/AQC/udQCmidRap.cxx:181:9: style: Condition 'isDGcandidate' is always true [knownConditionTrueFalse]
PWGUD/Core/DGCutparHolder.h:24:3: style: Class 'DGCutparHolder' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGUD/Core/DGCutparHolder.h:43:35: performance: Function parameter 'collisionSel' should be passed by const reference. However it seems that 'DGCutparHolder' is a callback function. [passedByValueCallback]
PWGUD/Core/DGPIDSelector.cxx:347:15: style: Local variable 'ii' shadows outer variable [shadowVariable]
PWGUD/Core/DGPIDSelector.cxx:350:15: style: Local variable 'ii' shadows outer variable [shadowVariable]
PWGUD/Core/DGPIDSelector.cxx:479:17: style: Local variable 'ii' shadows outer variable [shadowVariable]
PWGUD/Core/DGPIDSelector.cxx:88:41: performance: Function parameter 'PIDCutValues' should be passed by const reference. [passedByValue]
PWGUD/Core/DGPIDSelector.cxx:199:52: performance: Function parameter 'vetoes' should be passed by const reference. [passedByValue]
PWGUD/Core/DGPIDSelector.cxx:255:53: performance: Function parameter 'charges' should be passed by const reference. [passedByValue]
PWGUD/Core/DGPIDSelector.cxx:260:56: performance: Function parameter 'charges' should be passed by const reference. [passedByValue]
PWGUD/Core/DGPIDSelector.cxx:265:54: performance: Function parameter 'charges' should be passed by const reference. [passedByValue]
PWGUD/Core/DGPIDSelector.cxx:270:47: performance: Function parameter 'pids' should be passed by const reference. [passedByValue]
PWGUD/Core/DGPIDSelector.cxx:299:13: performance: Range variable 'perm' should be declared as const reference. [iterateByValue]
PWGUD/Core/DGPIDSelector.cxx:438:41: performance: Function parameter 'anaPars' should be passed by const reference. [passedByValue]
PWGUD/Core/DGPIDSelector.cxx:534:13: performance: Range variable 'comb' should be declared as const reference. [iterateByValue]
PWGUD/Core/DGPIDSelector.cxx:335:53: style: Parameter 'ref' can be declared as reference to const [constParameterReference]
PWGUD/Core/DGPIDSelector.cxx:466:60: style: Parameter 'pool' can be declared as reference to const [constParameterReference]
PWGUD/Core/DGPIDSelector.cxx:49:27: style: Parameter 'cutValues' can be declared as pointer to const [constParameterPointer]
PWGUD/Core/DGPIDSelector.h:111:3: style: Struct 'DGAnaparHolder' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGUD/Core/DGPIDSelector.h:98:25: performance: Function 'Cuts()' should return member 'mDGPIDCuts' by const reference. [returnByReference]
PWGUD/Core/DGPIDSelector.h:173:20: performance: Function 'FITvetoes()' should return member 'mFITvetoes' by const reference. [returnByReference]
PWGUD/Core/DGPIDSelector.h:188:20: performance: Function 'netCharges()' should return member 'mNetCharges' by const reference. [returnByReference]
PWGUD/Core/DGPIDSelector.h:189:20: performance: Function 'unlikeCharges()' should return member 'mUnlikeCharges' by const reference. [returnByReference]
PWGUD/Core/DGPIDSelector.h:190:20: performance: Function 'likeCharges()' should return member 'mLikeCharges' by const reference. [returnByReference]
PWGUD/Core/DGPIDSelector.h:191:20: performance: Function 'PIDs()' should return member 'mDGPIDs' by const reference. [returnByReference]
PWGUD/Core/DGPIDSelector.h:265:20: performance: Function 'trkinds()' should return member 'mtrkinds' by const reference. [returnByReference]
PWGUD/Core/DGPIDSelector.h:462:18: performance: Function 'getAnaPars()' should return member 'mAnaPars' by const reference. [returnByReference]
PWGUD/Core/DGPIDSelector.h:501:27: performance: Function 'unlikeIVMs()' should return member 'mUnlikeIVMs' by const reference. [returnByReference]
PWGUD/Core/DGPIDSelector.h:502:27: performance: Function 'likeIVMs()' should return member 'mLikeIVMs' by const reference. [returnByReference]
PWGUD/Core/DGPIDSelector.h:127:37: performance: Function parameter 'DGPIDCutValues' should be passed by const reference. However it seems that 'DGAnaparHolder' is a callback function. [passedByValueCallback]
PWGUD/Core/DGPIDSelector.h:242:48: performance: Function parameter 'anaPars' should be passed by const reference. [passedByValue]
PWGUD/Core/DGPIDSelector.h:242:96: performance: Function parameter 'comb' should be passed by const reference. [passedByValue]
PWGUD/Core/DGPIDSelector.h:292:43: performance: Function parameter 'comb' should be passed by const reference. [passedByValue]
PWGUD/Core/DGPIDSelector.h:434:15: performance: Range variable 'comb' should be declared as const reference. [iterateByValue]
PWGUD/Core/DGSelector.h:37:26: warning: Class 'DGSelector' does not have a copy constructor which is recommended since it has dynamic memory/resource management. [noCopyConstructor]
PWGUD/Core/DGSelector.h:37:26: warning: Class 'DGSelector' does not have a operator= which is recommended since it has dynamic memory/resource management. [noOperatorEq]
PWGUD/Core/FITCutParHolder.h:26:3: style: Class 'FITCutParHolder' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGUD/Core/SGCutParHolder.h:24:3: style: Class 'SGCutParHolder' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGUD/Core/SGCutParHolder.h:35:37: performance: Function parameter 'FITAmpLimits' should be passed by const reference. However it seems that 'SGCutParHolder' is a callback function. [passedByValueCallback]
PWGUD/Core/UDFSParser.cxx:141:42: performance: Function parameter 'str' should be passed by const reference. [passedByValue]
PWGUD/Core/UDFSParser.cxx:156:59: performance: Function parameter 'separator' should be passed by const reference. [passedByValue]
PWGUD/Core/UDGoodRunSelector.h:35:20: performance: Function 'goodRuns()' should return member 'mgoodRuns' by const reference. [returnByReference]
PWGUD/Core/UDHelpers.h:428:59: performance: Function parameter 'lims' should be passed by const reference. [passedByValue]
PWGUD/Core/UDHelpers.h:435:69: performance: Function parameter 'lims' should be passed by const reference. [passedByValue]
PWGUD/Core/UDHelpers.h:456:60: performance: Function parameter 'lims' should be passed by const reference. [passedByValue]
PWGUD/Core/UDHelpers.h:465:60: performance: Function parameter 'lims' should be passed by const reference. [passedByValue]
PWGUD/Core/UDHelpers.h:509:54: performance: Function parameter 'lims' should be passed by const reference. [passedByValue]
PWGUD/Core/UPCCutparHolder.h:22:3: style: Class 'UPCCutparHolder' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
PWGUD/Core/decayTree.cxx:232:12: warning: Member variable 'decayTree::fStatus' is not initialized in the constructor. [uninitMemberVar]
PWGUD/Core/decayTree.cxx:232:12: warning: Member variable 'decayTree::fnTracksMin' is not initialized in the constructor. [uninitMemberVar]
PWGUD/Core/decayTree.cxx:232:12: warning: Member variable 'decayTree::fnTracksMax' is not initialized in the constructor. [uninitMemberVar]
PWGUD/Core/decayTree.cxx:232:12: warning: Member variable 'decayTree::frgtwtofMin' is not initialized in the constructor. [uninitMemberVar]
PWGUD/Core/decayTree.cxx:232:12: warning: Member variable 'decayTree::fdBCMin' is not initialized in the constructor. [uninitMemberVar]
PWGUD/Core/decayTree.cxx:232:12: warning: Member variable 'decayTree::fdBCMax' is not initialized in the constructor. [uninitMemberVar]
PWGUD/Core/decayTree.cxx:232:12: warning: Member variable 'decayTree::fChargeState' is not initialized in the constructor. [uninitMemberVar]
PWGUD/Core/decayTree.cxx:232:12: warning: Member variable 'decayTree::fnFinals' is not initialized in the constructor. [uninitMemberVar]
PWGUD/Core/decayTree.cxx:57:3: performance: Variable 'fpidCuts' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList]
PWGUD/Core/decayTree.cxx:95:3: performance: Variable 'fRnames' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList]
PWGUD/Core/decayTree.cxx:726:22: style: Local variable 'daughters' shadows outer variable [shadowVariable]
PWGUD/Core/decayTree.cxx:1110:15: style: Local variable 'ii' shadows outer variable [shadowVariable]
PWGUD/Core/decayTree.cxx:1113:15: style: Local variable 'ii' shadows outer variable [shadowVariable]
PWGUD/Core/decayTree.cxx:1169:17: style: Local variable 'ii' shadows outer variable [shadowVariable]
PWGUD/Core/decayTree.cxx:1052:45: performance: Function parameter 'chs' should be passed by const reference. [passedByValue]
PWGUD/Core/decayTree.cxx:55:60: style: Parameter 'pidcuts' can be declared as reference to const [constParameterReference]
PWGUD/Core/decayTree.cxx:1098:48: style: Parameter 'ref' can be declared as reference to const [constParameterReference]
PWGUD/Core/decayTree.cxx:1156:56: style: Parameter 'pool' can be declared as reference to const [constParameterReference]
PWGUD/Core/decayTree.h:193:5: performance: Variable 'fName' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList]
PWGUD/Core/decayTree.h:194:5: performance: Variable 'fIVM' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList]
PWGUD/Core/decayTree.h:195:5: performance: Variable 'fComb' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList]
PWGUD/Core/decayTree.h:218:5: performance: Variable 'fRecs' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList]
PWGUD/Core/decayTree.h:219:5: performance: Variable 'fComb' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList]
PWGUD/Core/decayTree.h:199:15: performance: Function 'name()' should return member 'fName' by const reference. [returnByReference]
PWGUD/Core/decayTree.h:201:20: performance: Function 'comb()' should return member 'fComb' by const reference. [returnByReference]
PWGUD/Core/decayTree.h:224:14: performance: Function 'recResonances()' should return member 'fRecs' by const reference. [returnByReference]
PWGUD/Core/decayTree.h:225:20: performance: Function 'comb()' should return member 'fComb' by const reference. [returnByReference]
PWGUD/Core/decayTree.h:319:15: performance: Function 'name()' should return member 'fName' by const reference. [returnByReference]
PWGUD/Core/decayTree.h:323:20: performance: Function 'detectorHits()' should return member 'fdetectorHits' by const reference. [returnByReference]
PWGUD/Core/decayTree.h:324:28: performance: Function 'getParents()' should return member 'fParents' by const reference. [returnByReference]
PWGUD/Core/decayTree.h:325:28: performance: Function 'getDaughters()' should return member 'fDaughters' by const reference. [returnByReference]
PWGUD/Core/decayTree.h:334:15: performance: Function 'getPIDSelector()' should return member 'fpidSelector' by const reference. [returnByReference]
PWGUD/Core/decayTree.h:335:26: performance: Function 'getAngleCuts()' should return member 'fangleCuts' by const reference. [returnByReference]
PWGUD/Core/decayTree.h:475:27: performance: Function 'getResonances()' should return member 'fResonances' by const reference. [returnByReference]
PWGUD/Core/decayTree.h:482:20: performance: Function 'FITvetos()' should return member 'fFITvetos' by const reference. [returnByReference]
PWGUD/Core/decayTree.h:191:46: performance: Function parameter 'name' should be passed by const reference. [passedByValue]
PWGUD/Core/decayTree.h:216:42: performance: Function parameter 'recs' should be passed by const reference. [passedByValue]
PWGUD/Core/decayTree.h:249:28: performance: Function parameter 'name' should be passed by const reference. [passedByValue]
PWGUD/Core/decayTree.h:258:30: performance: Function parameter 'parent' should be passed by const reference. [passedByValue]
PWGUD/Core/decayTree.h:298:35: performance: Function parameter 'pidcuts' should be passed by const reference. [passedByValue]
PWGUD/Core/decayTree.h:299:44: performance: Function parameter 'anglecuts' should be passed by const reference. [passedByValue]
PWGUD/Core/decayTree.h:191:90: style: Parameter 'comb' can be declared as reference to const [constParameterReference]
PWGUD/Core/decayTree.h:216:83: style: Parameter 'comb' can be declared as reference to const [constParameterReference]
PWGUD/Core/decayTree.h:259:47: style: Parameter 'daughters' can be declared as reference to const [constParameterReference]
PWGUD/TableProducer/UPCCandidateProducer.cxx:1926:29: style: C-style pointer casting [cstyleCast]
PWGUD/TableProducer/UPCCandidateProducer.cxx:1926:63: style: C-style pointer casting [cstyleCast]
PWGUD/TableProducer/UPCCandidateProducer.cxx:1943:29: style: C-style pointer casting [cstyleCast]
PWGUD/TableProducer/UPCCandidateProducer.cxx:2012:25: style: C-style pointer casting [cstyleCast]
PWGUD/TableProducer/UPCCandidateProducer.cxx:2052:31: style: C-style pointer casting [cstyleCast]
PWGUD/TableProducer/UPCCandidateProducer.cxx:349:15: style: Local variable 'newEventID' shadows outer variable [shadowVariable]
PWGUD/TableProducer/UPCCandidateProducer.cxx:261:70: style: Parameter 'bcs' can be declared as reference to const [constParameterReference]
PWGUD/TableProducer/UPCCandidateProducer.cxx:1442:16: style: Variable 'pair' can be declared as reference to const [constVariableReference]
PWGUD/TableProducer/UPCCandidateProducer.cxx:1713:16: style: Variable 'pair' can be declared as reference to const [constVariableReference]
PWGUD/TableProducer/dgCandProducer.cxx:193:37: performance: Function parameter 'histdir' should be passed by const reference. [passedByValue]
PWGUD/TableProducer/dgCandProducer.cxx:240:53: performance: Function parameter 'histdir' should be passed by const reference. [passedByValue]
PWGUD/TableProducer/dgCandProducer.cxx:298:32: performance: Function parameter 'histdir' should be passed by const reference. [passedByValue]
PWGUD/TableProducer/fwdTrackPropagation.cxx:98:33: style: Expression is always true because 'else if' condition is opposite to previous condition at line 87. [multiCondition]
PWGUD/TableProducer/upcCandProducerGlobalMuon.cxx:899:87: style: C-style pointer casting [cstyleCast]
PWGUD/TableProducer/upcCandProducerGlobalMuon.cxx:225:15: style: Local variable 'newEventID' shadows outer variable [shadowVariable]
PWGUD/TableProducer/upcCandProducerGlobalMuon.cxx:344:29: style: Variable 'ids' can be declared as reference to const [constVariableReference]
PWGUD/TableProducer/upcCandProducerGlobalMuon.cxx:355:97: style: Parameter 'inIt' can be declared as reference to const [constParameterReference]
PWGUD/TableProducer/upcCandProducerGlobalMuon.cxx:829:13: style: Variable 'vMuonIds' can be declared as reference to const [constVariableReference]
PWGUD/TableProducer/upcCandProducerMuon.cxx:523:76: style: C-style pointer casting [cstyleCast]
PWGUD/TableProducer/upcCandProducerMuon.cxx:168:15: style: Local variable 'newEventID' shadows outer variable [shadowVariable]
PWGUD/TableProducer/upcCandProducerMuon.cxx:287:29: style: Variable 'ids' can be declared as reference to const [constVariableReference]
PWGUD/TableProducer/upcCandProducerMuon.cxx:298:97: style: Parameter 'inIt' can be declared as reference to const [constParameterReference]
PWGUD/TableProducer/upcCandProducerMuon.cxx:465:13: style: Variable 'vMuonIds' can be declared as reference to const [constVariableReference]
PWGUD/Tasks/FwdMuonsUPC.cxx:483:46: style: Same expression in both branches of ternary operator. [duplicateExpressionTernary]
PWGUD/Tasks/FwdMuonsUPC.cxx:441:13: style: struct member 'ZDCinfo::id' is never used. [unusedStructMember]
PWGUD/Tasks/diffMCDataScanner.cxx:457:25: style: Parameter 'tracks' can be declared as reference to const [constParameterReference]
PWGUD/Tasks/diffQA.cxx:963:11: style: Variable 'bc3' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/diffQA.cxx:61:37: style: struct member 'DiffQA::hFV0A' is never used. [unusedStructMember]
PWGUD/Tasks/diffQA.cxx:64:37: style: struct member 'DiffQA::hFDDA' is never used. [unusedStructMember]
PWGUD/Tasks/diffQA.cxx:65:37: style: struct member 'DiffQA::hFDDC' is never used. [unusedStructMember]
PWGUD/Tasks/exclusivePentaquark.cxx:233:22: style: Local variable 'resonance' shadows outer variable [shadowVariable]
PWGUD/Tasks/exclusiveTwoProtons.cxx:420:22: style: Condition 'dcaZbool==1' is always true [knownConditionTrueFalse]
PWGUD/Tasks/exclusiveTwoProtons.cxx:420:40: style: Condition 'dcaXYbool==1' is always true [knownConditionTrueFalse]
PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:417:25: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:414:24: style: The comparison 'dcaZbool == 1' is always true. [knownConditionTrueFalse]
PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:417:25: style: The comparison 'dcaXYbool == 1' is always true. [knownConditionTrueFalse]
PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:421:47: style: The comparison 'dcaZbool == 1' is always true. [knownConditionTrueFalse]
PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:421:52: style: Same expression on both sides of '&&' because 'dcaXYbool==1' and 'dcaZbool==1' represent the same value. [knownConditionTrueFalse]
PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:421:65: style: The comparison 'dcaXYbool == 1' is always true. [knownConditionTrueFalse]
PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:446:22: style: The comparison 'dcaZbool == 1' is always true. [knownConditionTrueFalse]
PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:446:27: style: Same expression on both sides of '&&' because 'dcaZbool==1' and 'dcaXYbool==1' represent the same value. [knownConditionTrueFalse]
PWGUD/Tasks/exclusiveTwoProtonsSG.cxx:446:40: style: The comparison 'dcaXYbool == 1' is always true. [knownConditionTrueFalse]
PWGUD/Tasks/flowCumulantsUpc.cxx:732:11: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGUD/Tasks/flowCumulantsUpc.cxx:833:11: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGUD/Tasks/flowCumulantsUpc.cxx:530:91: style: C-style pointer casting [cstyleCast]
PWGUD/Tasks/flowCumulantsUpc.cxx:540:91: style: C-style pointer casting [cstyleCast]
PWGUD/Tasks/sgFITAnalyzer.cxx:782:15: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGUD/Tasks/sgFITAnalyzer.cxx:794:15: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGUD/Tasks/sgFITAnalyzer.cxx:806:19: style: The if condition is the same as the previous if condition [duplicateCondition]
PWGUD/Tasks/sgFourPiAnalyzer.cxx:122:22: style: Local variable 'a' shadows outer variable [shadowVariable]
PWGUD/Tasks/sgSixPiAnalyzer.cxx:121:22: style: Local variable 'a' shadows outer variable [shadowVariable]
PWGUD/Tasks/sgSpectraAnalyzer.cxx:240:13: style: Redundant initialization for 'gapSide'. The initialized value is overwritten before it is read. [redundantInitialization]
PWGUD/Tasks/sgTwoPiAnalyzer.cxx:139:22: style: Local variable 'a' shadows outer variable [shadowVariable]
PWGUD/Tasks/sginclusivePhiKstarSD.cxx:568:12: style: Local variable 'phi' shadows outer variable [shadowVariable]
PWGUD/Tasks/upcCandidateAnalyzer.cxx:611:57: style: C-style pointer casting [cstyleCast]
PWGUD/Tasks/upcCandidateAnalyzer.cxx:632:43: style: C-style pointer casting [cstyleCast]
PWGUD/Tasks/upcCandidateAnalyzer.cxx:632:77: style: C-style pointer casting [cstyleCast]
PWGUD/Tasks/upcCandidateAnalyzer.cxx:632:113: style: C-style pointer casting [cstyleCast]
PWGUD/Tasks/upcCandidateAnalyzer.cxx:690:43: style: C-style pointer casting [cstyleCast]
PWGUD/Tasks/upcCandidateAnalyzer.cxx:690:77: style: C-style pointer casting [cstyleCast]
PWGUD/Tasks/upcCandidateAnalyzer.cxx:690:113: style: C-style pointer casting [cstyleCast]
PWGUD/Tasks/upcCandidateAnalyzer.cxx:716:73: style: C-style pointer casting [cstyleCast]
PWGUD/Tasks/upcCandidateAnalyzer.cxx:737:43: style: C-style pointer casting [cstyleCast]
PWGUD/Tasks/upcCandidateAnalyzer.cxx:737:77: style: C-style pointer casting [cstyleCast]
PWGUD/Tasks/upcCandidateAnalyzer.cxx:737:113: style: C-style pointer casting [cstyleCast]
PWGUD/Tasks/upcCandidateAnalyzer.cxx:66:48: style: struct member 'UpcCandAnalyzer::fMeansSigmas' is never used. [unusedStructMember]
PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:851:48: style: Condition 'fillCollisionUD(mixed,multiplicity)==false' is always false [knownConditionTrueFalse]
PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:1049:45: style: Condition 'fillCollisionUD(same,multiplicity)==false' is always false [knownConditionTrueFalse]
PWGUD/Tasks/upcPhotonuclearAnalysisJMG.cxx:367:23: style: struct member 'UpcPhotonuclearAnalysisJMG::gapSideBinsEdges' is never used. [unusedStructMember]
PWGUD/Tasks/upcPionAnalysis.cxx:565:22: style: Variable 'piplus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:566:22: style: Variable 'piplus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:567:22: style: Variable 'piplus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:570:23: style: Variable 'piminus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:571:23: style: Variable 'piminus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:572:23: style: Variable 'piminus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:621:22: style: Variable 'piplus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:622:22: style: Variable 'piplus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:623:22: style: Variable 'piplus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:624:22: style: Variable 'piplus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:625:22: style: Variable 'piplus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:629:23: style: Variable 'piminus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:630:23: style: Variable 'piminus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:631:23: style: Variable 'piminus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:632:23: style: Variable 'piminus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:633:23: style: Variable 'piminus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:676:22: style: Variable 'piplus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:677:22: style: Variable 'piplus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:678:22: style: Variable 'piplus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:679:22: style: Variable 'piplus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:680:22: style: Variable 'piplus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:681:22: style: Variable 'piplus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:682:22: style: Variable 'piplus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:686:23: style: Variable 'piminus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:687:23: style: Variable 'piminus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:688:23: style: Variable 'piminus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:689:23: style: Variable 'piminus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:690:23: style: Variable 'piminus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:691:23: style: Variable 'piminus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:692:23: style: Variable 'piminus' is reassigned a value before the old one has been used. [redundantAssignment]
PWGUD/Tasks/upcPionAnalysis.cxx:480:26: style: Unused variable: trackpt [unusedVariable]
PWGUD/Tasks/upcPionAnalysis.cxx:481:26: style: Unused variable: tracketa [unusedVariable]
PWGUD/Tasks/upcPionAnalysis.cxx:482:26: style: Unused variable: trackphi [unusedVariable]
PWGUD/Tasks/upcPionAnalysis.cxx:483:26: style: Unused variable: tracksign [unusedVariable]
PWGUD/Tasks/upcPolarisationJpsiIncoh.cxx:170:13: style: struct member 'ZDCinfo::id' is never used. [unusedStructMember]
PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:480:111: performance: Function parameter 'selProtonIndices' should be passed by const reference. [passedByValue]
PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:480:147: performance: Function parameter 'selAntiProtonIndices' should be passed by const reference. [passedByValue]
PWGUD/Tasks/upcTauTau13topo.cxx:2171:11: style: Condition 'flagGlobalCheck' is always true [knownConditionTrueFalse]
PWGUD/Tasks/upcTauTau13topo.cxx:3868:9: style: Condition 'is1ProngElectronMC' is always true [knownConditionTrueFalse]
PWGUD/Tasks/upcTauTau13topo.cxx:3868:31: style: Condition 'is3prong3PiMC' is always true [knownConditionTrueFalse]
PWGUD/Tasks/upcTauTau13topo.cxx:4650:57: style: Condition 'flagEl[i]' is always true [knownConditionTrueFalse]
PWGUD/Tasks/upcTauTau13topo.cxx:4650:48: style: Same expression on both sides of '&&'. [duplicateExpression]
PWGUD/Tasks/upcTauTau13topo.cxx:4895:44: style: Same expression 'trkHasTof[matchedElIndexToData]' found multiple times in chain of '&&' operators. [duplicateExpression]
PWGUD/Tasks/upcTauTau13topo.cxx:2593:13: style: Local variable 'vectorAsym' shadows outer function [shadowFunction]
Tools/ML/model.h:142:37: performance: Function 'getInputShapes()' should return member 'mInputShapes' by const reference. [returnByReference]
Tools/PIDML/qaPidMl.cxx:341:55: style: inconclusive: Boolean expression 'pidCertainties[index]<kCertaintyThreshold' is used in bitwise operation. Did you mean '||'? [bitwiseOnBoolean]
Tools/PIDML/qaPidMl.cxx:341:114: style: inconclusive: Boolean expression 'pidCertainties[index]==pidCertainties[smallerIndex]' is used in bitwise operation. Did you mean '&&'? [bitwiseOnBoolean]
Tutorials/ML/applyOnnxModel.cxx:55:12: style: Variable 'modelOutput' can be declared as pointer to const [constVariablePointer]
Tutorials/OpenData/flowAnalysis.cxx:86:24: style: struct member 'flow_base::ncent_bins' is never used. [unusedStructMember]
Tutorials/PWGEM/Cocktail/plotLFCocktail.C:37:16: style: C-style pointer casting [cstyleCast]
Tutorials/PWGEM/Cocktail/plotLFCocktail.C:51:5: style: C-style pointer casting [cstyleCast]
Tutorials/PWGLF/Resonance/resonances_step3.cxx:73:67: style: Parameter 'resoParents' can be declared as reference to const [constParameterReference]
Tutorials/PWGLF/Resonance/resonances_step4.cxx:101:67: style: Parameter 'resoParents' can be declared as reference to const [constParameterReference]
Tutorials/PWGLF/Resonance/resonances_step6.cxx:137:30: style: struct member 'resonances_tutorial::paircharge' is never used. [unusedStructMember]
Tutorials/PWGUD/UDTutorial_03b.cxx:143:85: performance: Function parameter 'trackIds' should be passed by const reference. [passedByValue]
Tutorials/PWGUD/UDTutorial_03b.cxx:161:88: performance: Function parameter 'partIds' should be passed by const reference. [passedByValue]
Tutorials/PWGUD/UDTutorial_04.cxx:140:85: performance: Function parameter 'trackIds' should be passed by const reference. [passedByValue]
Tutorials/PWGUD/UDTutorial_04.cxx:158:88: performance: Function parameter 'partIds' should be passed by const reference. [passedByValue]
Tutorials/include/configurableCut.h:28:3: style: Class 'configurableCut' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
Tutorials/src/compatibleBCs.cxx:97:16: style: Local variable 'bc' shadows outer variable [shadowVariable]
To access the full raw file, add .md in the URL.