Skip to content
Snippets Groups Projects
Commit 6b7e0e4a authored by Olivier Couet's avatar Olivier Couet
Browse files

Fix an uninitialised variable.

Found by coverity.
parent 9aa05544
No related branches found
No related tags found
No related merge requests found
......@@ -56,6 +56,7 @@ TCandle::TCandle()
fDismiss = 0;
fLogX = 0;
fLogY = 0;
fLogZ = 0;
fNDrawPoints = 0;
fNHistoPoints = 0;
fAxisMin = 0.;
......@@ -87,6 +88,7 @@ TCandle::TCandle(const char *opt)
fDismiss = 0;
fLogX = 0;
fLogY = 0;
fLogZ = 0;
fNDrawPoints = 0;
fNHistoPoints = 0;
fAxisMin = 0.;
......@@ -131,6 +133,7 @@ TCandle::TCandle(const Double_t candlePos, const Double_t candleWidth, Long64_t
fOption = kNoOption;
fLogX = 0;
fLogY = 0;
fLogZ = 0;
fNDrawPoints = 0;
fNHistoPoints = 0;
fAxisMin = 0.;
......@@ -164,6 +167,7 @@ TCandle::TCandle(const Double_t candlePos, const Double_t candleWidth, TH1D *pro
fOption = kNoOption;
fLogX = 0;
fLogY = 0;
fLogZ = 0;
fNDrawPoints = 0;
fNHistoPoints = 0;
fAxisMin = 0.;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment