Advertisement
PVS-StudioWarnings

PVS-Studio warning V519 for Geant4

Nov 26th, 2014
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.67 KB | None | 0 0
  1. void G4IonisParamMat::ComputeDensityEffect()
  2. {
  3.   ....
  4.   fX0density = 0.326*fCdensity-2.5 ;
  5.   fX1density = 5.0 ;
  6.   fMdensity = 3. ;
  7.   while((icase > 0)&&(fCdensity < ClimiG[icase])) icase-- ;
  8.   fX0density = X0valG[icase];
  9.   fX1density = X1valG[icase];
  10.   ....
  11. }
  12.  
  13. This suspicious code was found in Geant4 project by PVS-Studio static code analyzer.
  14. Warning message is:
  15. V519 The 'fX0density' variable is assigned values twice successively. Perhaps this is a mistake. Check lines: 245, 247. g4ionisparammat.cc 247
  16.  
  17. PVS-Studio is a static analyzer for detecting bugs in the source code of applications written in C, C++, C++11, C++/CX. Site: http://www.viva64.com/en/pvs-studio/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement