ReFRACtor
aerosol_extinction.cc
Go to the documentation of this file.
1 #include "aerosol_extinction.h"
2 #include <vector>
3 #include <boost/shared_ptr.hpp>
4 
5 using namespace FullPhysics;
6 
7 #ifdef HAVE_LUA
8 #include "register_lua.h"
11 
12 typedef std::vector<boost::shared_ptr<AerosolExtinction> >::reference
13 (std::vector<boost::shared_ptr<AerosolExtinction> >::*vaevt)(std::vector<boost::shared_ptr<AerosolExtinction> >::size_type);
14 
15 // typedef to distinguish between copying value or moving value (C++11) push_back prototoypes
16 typedef void(std::vector<boost::shared_ptr<AerosolExtinction> >::*pbt1)(
17  const std::vector<boost::shared_ptr<AerosolExtinction> >::value_type&);
18 
19 REGISTER_LUA_CLASS_NAME(std::vector<boost::shared_ptr<AerosolExtinction> >, VectorAerosolExtinction)
20 .def(luabind::constructor<>())
21 .def("size", &std::vector<boost::shared_ptr<AerosolExtinction> >::size)
22 .def("push_back", ((pbt1) &std::vector<boost::shared_ptr<AerosolExtinction> >::push_back))
23 .def("value", ((vaevt) &std::vector<boost::shared_ptr<AerosolExtinction> >::operator[]))
25 #endif
Definition: doxygen.h:52
STL namespace.
#define REGISTER_LUA_CLASS(X)
Definition: register_lua.h:116
#define REGISTER_LUA_CLASS_NAME(X, Y)
Definition: register_lua.h:129
void(std::vector< std::string >::* pbt1)(const std::vector< std::string >::value_type &)
Definition: register_lua.cc:52
Contains classes to abstract away details in various Spurr Radiative Transfer software.
Definition: doxygen_python.h:1
#define REGISTER_LUA_END()
Definition: register_lua.h:134
def(luabind::constructor< int >()) .def("rows"
double value(const FullPhysics::AutoDerivative< double > &Ad)
This class maps the state vector to the aerosol extinction on each level.

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