Skip to content

Commit

Permalink
Remove unused function. Refs #6020.
Browse files Browse the repository at this point in the history
  • Loading branch information
wdzhou committed Jan 10, 2013
1 parent eee3881 commit c447bb3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,14 +180,14 @@ typedef boost::shared_ptr<ThermalNeutronBk2BkExpConvPV> ThermalNeutronBk2BkExpCo

//--- Public inline function --------------------------------------------------
/** Calculate d = a/sqrt(h**2+k**2+l**2)
*/
inline double calCubicDSpace(double a, int h, int k, int l)
{
// TODO This function will be refactored in future.
double d = a/( sqrt(double(h*h)+double(k*k)+double(l*l)) );
return d;
}
*/

/// Integral for Gamma
std::complex<double> E1(std::complex<double> z);
Expand Down

0 comments on commit c447bb3

Please sign in to comment.