dg_tools
previous_value.hpp
1 
9 #pragma once
10 
11 /* --------------------------------------------------------------------- */
12 /* --- INCLUDE --------------------------------------------------------- */
13 /* --------------------------------------------------------------------- */
14 
15 /* Matrix */
16 #include <dynamic-graph/linear-algebra.h>
17 namespace dg = dynamicgraph;
18 
19 /* SOT */
20 #include <dynamic-graph/signal-time-dependent.h>
21 #include <dynamic-graph/signal-ptr.h>
22 #include <dynamic-graph/entity.h>
23 
24 
25 /* --------------------------------------------------------------------- */
26 /* --- API ------------------------------------------------------------- */
27 /* --------------------------------------------------------------------- */
28 
29 #if defined (WIN32)
30 # if defined (PreviousValue_EXPORTS)
31 # define PreviousValue_EXPORTS __declspec(dllexport)
32 # else
33 # define PreviousValue_EXPORTS __declspec(dllimport)
34 # endif
35 #else
36 # define PreviousValue_EXPORTS
37 #endif
38 
39 namespace dg_tools {
40 
41  /* --------------------------------------------------------------------- */
42  /* --- CLASS ----------------------------------------------------------- */
43  /* --------------------------------------------------------------------- */
44 
52  class PreviousValue_EXPORTS PreviousValue: public dg::Entity
53  {
54  public:
55 
56  PreviousValue( const std::string & name );
57 
58  void init(const int& size);
59 
60  static const std::string CLASS_NAME;
61  virtual void display( std::ostream& os ) const;
62  virtual const std::string& getClassName( void ) const {return CLASS_NAME;}
63 
64  dg::SignalPtr<dg::Vector,int> dataSIN;
65  dg::SignalTimeDependent<dg::Vector,int> dataSOUT;
66  dg::SignalTimeDependent<dg::Vector,int> previousSOUT;
67 
68  dg::Vector& getPrevious(dg::Vector& previous, int time);
69  dg::Vector& getInput(dg::Vector& output, int time);
70 
71  private:
72  int size_;
73  bool is_initialized_;
74  dg::Vector internal_history_;
75  };
76 } // namespace dg_tools
Definition: history_recorder.hpp:39
Records data over a fixed history and yields the data as truncated vector.
Definition: previous_value.hpp:52
Definition: ComImpedanceController.hpp:31