/** @page LEVEL2 Just-In-Time (JIT) Input File This capability executes C++ code as an input file. It is implemented by the Trick::JITInputFile class. This class provides a method for injecting code that is not possible to do through the python input processor or for code that is required to execute at maximum speed. @section LEVEL3 Basic Usage @note When using this capability the simulation is not recompiled. Here is an example C++ input file to use with the Trick example ball simulation. @code // Include S_source.hh to get the sim object definitions and instantiations. #include "../S_source.hh" // By default the input processor looks for the run_me function with the following call signature extern "C" int run_me() { // All of the top level sim objects are available by including S_source.hh ball.obj.state.input.position[0] = 6.0 ; ball.obj.state.input.position[1] = 4.0 ; // trick.stop(