Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
clang-format.
  • Loading branch information
vgvassilev committed Apr 26, 2017
commit 3b3d9e0aef56f5549a78d69138bb21693d7c721c
2 changes: 1 addition & 1 deletion math/mathmore/test/testInterpolation.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ void interpolate( const ROOT::Math::Interpolator & itp, bool drawSame = false )
Int_t i = 0;
Float_t xcoord[n], ycoord[n];

for ( i = 0; i < n; ++i) {
for (i = 0; i < n; ++i) {
xi = 0.2 * i;
// JH replacing for ( double xi = 0; xi < 10.01; xi += 0.2) {
xcoord[i] = xi;
Expand Down
8 changes: 4 additions & 4 deletions test/stressLinear.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -2250,10 +2250,10 @@ void spstress_matrix_fill(Int_t rsize,Int_t csize)
Bool_t ok = kTRUE;

if (rsize < 4) {
Error("spstress_matrix_fill","rsize should be >= 4");
ok = kFALSE;
StatusPrint(2,"Filling, Inserting, Using",ok);
return;
Error("spstress_matrix_fill", "rsize should be >= 4");
ok = kFALSE;
StatusPrint(2, "Filling, Inserting, Using", ok);
return;
}

if (csize < 4) {
Expand Down
2 changes: 1 addition & 1 deletion tmva/tmva/src/HyperParameterOptimisation.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
TMVA::HyperParameterOptimisationResult::HyperParameterOptimisationResult()
: fROCAVG(0.0), fROCCurves(std::make_shared<TMultiGraph>())
{
fROCAVG = 0.;
fROCAVG = 0.;
}

TMVA::HyperParameterOptimisationResult::~HyperParameterOptimisationResult()
Expand Down
2 changes: 1 addition & 1 deletion tmva/tmvagui/src/rulevisHists.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -263,5 +263,5 @@ void TMVA::rulevisHists( TDirectory *rfdir, TDirectory *vardir, TDirectory *corr
TString fname = Form( "plots/%s_c%i", outputName.Data(), countCanvas+1 );
TMVAGlob::imgconv( c[countCanvas], fname );
}
delete [] c;
delete[] c;
}