ReFRACtor
old_constant.cc
Go to the documentation of this file.
1 #include "old_constant.h"
2 
3 using namespace FullPhysics;
4 
5 #ifdef HAVE_LUA
6 #include "register_lua.h"
7 
8 using namespace luabind;
9 namespace FullPhysics {
10  void register_lua_OldConstant(lua_State *ls) {
11  // Try and retrieve global table Constants,
12  // if not create it
13  object const_table = globals(ls)["Constants"];
14 
15  if (type(const_table) == LUA_TNIL) {
16  const_table = newtable(ls);
17  globals(ls)["Constants"] = const_table;
18  }
19 
20  // Add our constants to the global table
21  const_table["speed_of_light"] = OldConstant::speed_of_light.value;
22  }
23 }
24 #endif
Contains classes to abstract away details in various Spurr Radiative Transfer software.
Definition: doxygen_python.h:1
const DoubleWithUnit speed_of_light(299792458, units::m/units::s)
Speed of light, in m/s.

Copyright © 2017, California Institute of Technology.
ALL RIGHTS RESERVED.
U.S. Government Sponsorship acknowledged.
Generated Fri Aug 24 2018 15:44:11