Skip to content

Commit

Permalink
remove NEXTSTEP option
Browse files Browse the repository at this point in the history
  • Loading branch information
pseyfert committed Oct 31, 2016
1 parent b5cf0ea commit ec7918b
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tmva/tmva/src/VariableNormalizeTransform.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -605,14 +605,8 @@ void TMVA::VariableNormalizeTransform::MakeFunction( std::ostream& fout, const T
fout << " for (int ivar=0;ivar<"<<nVar<<";ivar++) {" << std::endl;
fout << " double offset = fOff_"<<trCounter<<"[cls][ivar];" << std::endl;
fout << " double scale = fScal_"<<trCounter<<"[cls][ivar];" << std::endl;
fout << "#ifndef NEXTTEST" << std::endl;
fout << " iv[indicesPut.at(ivar)] = scale*dv[ivar]-offset;" << std::endl;
fout << " }" << std::endl;
fout << "#else" << std::endl;
fout << " dv[ivar] = scale*dv[ivar]-offset;" << std::endl;
fout << " }" << std::endl;
fout << " for (int ivar=0; ivar<nVar; ivar++) iv[indicesPut.at(ivar)] = dv[ivar];" << std::endl;
fout << "#endif" << std::endl;
fout << "}" << std::endl;
}
}

0 comments on commit ec7918b

Please sign in to comment.