SoftwarePLL.h
Go to the documentation of this file.
1 #include "sick_scan/sick_scan_base.h" /* Base definitions included in all header files, added by add_sick_scan_base_header.py. Do not edit this line. */
2 #ifndef SOFTWARE_PLL_H
3 #define SOFTWARE_PLL_H
4 
5 #ifdef _MSC_VER
6 #pragma warning(disable : 4996)
7 #endif
8 
9 #include <map>
10 #include <string>
11 #include <iostream>
12 #include <fstream>
13 #include <cstring>
14 #include <sstream>
15 #include <vector>
16 #include <cstdlib>
17 #include <iomanip>
18 #include <ctime>
19 #include <stdint.h>
20 
25 class SoftwarePLL
26 {
27 public:
28 
36  static SoftwarePLL& Instance(const std::string & id = "", int fifo_length = 7);
37 
41  ~SoftwarePLL();
42 
51  bool GetCorrectedTimeStamp(uint32_t& sec, uint32_t& nanoSec, uint32_t tick);
52 
61  bool UpdatePLL(uint32_t sec, uint32_t nanoSec, uint32_t curtick);
62 
68  bool IsInitialized() const { return IsInitialized_; }
69 
70 protected:
71 
77  void IsInitialized(bool val) { IsInitialized_ = val; }
78 
84  uint64_t FirstTick() const { return FirstTick_; }
85 
91  void FirstTick(uint64_t val) { FirstTick_ = val; }
92 
98  double FirstTimeStamp() const { return FirstTimeStamp_; }
99 
105  void FirstTimeStamp(double val) { FirstTimeStamp_ = val; }
106 
112  double InterpolationSlope() const { return InterpolationSlope_; }
113 
119  void InterpolationSlope(double val) { InterpolationSlope_ = val; }
120 
126  double AllowedTimeDeviation() const { return AllowedTimeDeviation_; }
127 
133  void AllowedTimeDeviation(double val) { AllowedTimeDeviation_ = val; }
134 
141 
148 
157  bool PushIntoFifo(double curTimeStamp, uint32_t curtick);// update tick fifo and update clock (timestamp) fifo;
158 
168  double ExtraPolateRelativeTimeStamp(uint32_t tick);
169 
170 private:
171 
173  const int FifoSize_;
174  static const double MaxAllowedTimeDeviation_;
175  static const uint32_t MaxExtrapolationCounter_;
176  std::vector<uint32_t> TickFifo_;
177  std::vector<double> ClockFifo_;
181  uint64_t FirstTick_;
182  uint32_t Lastcurtick_ = 0;
184  bool NearSameTimeStamp(double relTimeStamp1, double relTimeStamp2);
187  SoftwarePLL(int fifo_length = 7) : FifoSize_(fifo_length), TickFifo_(fifo_length,0), ClockFifo_(fifo_length,0), IsInitialized_(false), FirstTimeStamp_(0), FirstTick_(0), InterpolationSlope_(0)
188  {
190  NumberValInFifo_ = 0;
191  }
192  // verhindert, dass ein Objekt von ausserhalb von N erzeugt wird.
193  // protected, wenn man von der Klasse noch erben moechte
194  SoftwarePLL(const SoftwarePLL&); /* verhindert, dass eine weitere Instanz via
195  Kopier-Konstruktor erstellt werden kann */
196  SoftwarePLL & operator = (const SoftwarePLL &); //Verhindert weitere Instanz durch Kopie
197 
198  static std::map<std::string,SoftwarePLL*> _instances; // list of SoftwarePLL instances, mapped by id
199 };
200 
201 #endif
SoftwarePLL
class SoftwarePLL implements synchronisation between ticks and timestamp. See https://github....
Definition: softwarePLL.h:21
SoftwarePLL::AllowedTimeDeviation
double AllowedTimeDeviation() const
Returns the max. allowed time difference between estimated and measured timestamp time in seconds.
Definition: SoftwarePLL.h:126
SoftwarePLL::SoftwarePLL
SoftwarePLL()
Definition: softwarePLL.h:150
SoftwarePLL::~SoftwarePLL
~SoftwarePLL()
Definition: softwarePLL.h:30
SoftwarePLL::Lastcurtick_
uint32_t Lastcurtick_
Definition: SoftwarePLL.h:182
SoftwarePLL::NearSameTimeStamp
bool NearSameTimeStamp(double relTimeStamp1, double relTimeStamp2)
Definition: SoftwarePLL.cpp:157
SoftwarePLL::FirstTick
uint64_t FirstTick() const
Returns the first sensor tick in the fifo buffer.
Definition: SoftwarePLL.h:84
SoftwarePLL::ExtraPolateRelativeTimeStamp
double ExtraPolateRelativeTimeStamp(uint32_t tick)
Extrapolates and returns the measurement timestamp in seconds relative to FirstTimeStamp....
Definition: SoftwarePLL.cpp:76
SoftwarePLL::AllowedTimeDeviation
void AllowedTimeDeviation(double val)
Set the max. allowed time difference between estimated and measured receive timestamp in seconds.
Definition: SoftwarePLL.h:133
SoftwarePLL::GetCorrectedTimeStamp
bool GetCorrectedTimeStamp(uint32_t &sec, uint32_t &nanoSec, uint32_t tick)
Computes the timestamp of a measurement from sensor ticks.
Definition: SoftwarePLL.cpp:142
SoftwarePLL::FifoSize_
const int FifoSize_
Definition: SoftwarePLL.h:173
SoftwarePLL::FirstTimeStamp_
double FirstTimeStamp_
Definition: SoftwarePLL.h:179
SoftwarePLL::PushIntoFifo
bool PushIntoFifo(double curTimeStamp, uint32_t curtick)
Pushes measurement timestamp and sensor ticks to the fifo, updates tick fifo and clock (timestamp) fi...
Definition: SoftwarePLL.cpp:55
SoftwarePLL::InterpolationSlope
void InterpolationSlope(double val)
Sets the interpolated slope (gradient of the regression line)
Definition: SoftwarePLL.h:119
SoftwarePLL::FirstTick_
uint64_t FirstTick_
Definition: SoftwarePLL.h:181
SoftwarePLL::ExtrapolationDivergenceCounter
void ExtrapolationDivergenceCounter(uint32_t val)
Sets the counter of extrapolated divergences (number of times the estimated and measured receive time...
Definition: SoftwarePLL.h:147
SoftwarePLL::NumberValInFifo_
int NumberValInFifo_
Definition: SoftwarePLL.h:172
SoftwarePLL::operator=
SoftwarePLL & operator=(const SoftwarePLL &)
SoftwarePLL::FirstTimeStamp
void FirstTimeStamp(double val)
Sets the first timestamp in the fifo buffer in seconds.
Definition: SoftwarePLL.h:105
SoftwarePLL::ExtrapolationDivergenceCounter
uint32_t ExtrapolationDivergenceCounter() const
Returns the counter of extrapolated divergences (number of times the estimated and measured receive t...
Definition: SoftwarePLL.h:140
sec
uint32_t sec(const rosTime &time)
Definition: sick_ros_wrapper.h:174
SoftwarePLL::TickFifo_
std::vector< uint32_t > TickFifo_
Definition: SoftwarePLL.h:176
SoftwarePLL::AllowedTimeDeviation_
double AllowedTimeDeviation_
Definition: SoftwarePLL.h:180
SoftwarePLL::UpdateInterpolationSlope
bool UpdateInterpolationSlope()
Definition: SoftwarePLL.cpp:170
SoftwarePLL::UpdatePLL
bool UpdatePLL(uint32_t sec, uint32_t nanoSec, uint32_t curtick)
Updates PLL internale State should be called only with network send timestamps.
Definition: SoftwarePLL.cpp:85
SoftwarePLL::FirstTimeStamp
double FirstTimeStamp() const
Returns the first timestamp in the fifo buffer in seconds.
Definition: SoftwarePLL.h:98
SoftwarePLL::MaxExtrapolationCounter_
static const uint32_t MaxExtrapolationCounter_
Definition: SoftwarePLL.h:175
SoftwarePLL::FirstTick
void FirstTick(uint64_t val)
Sets the first sensor tick in the fifo buffer.
Definition: SoftwarePLL.h:91
SoftwarePLL::IsInitialized_
bool IsInitialized_
Definition: SoftwarePLL.h:178
SoftwarePLL::IsInitialized
bool IsInitialized() const
Returns the initialization status, i.e. true, if SoftwarePLL is initialized, or false otherwise (inco...
Definition: SoftwarePLL.h:68
SoftwarePLL::ExtrapolationDivergenceCounter_
uint32_t ExtrapolationDivergenceCounter_
Definition: SoftwarePLL.h:186
sick_scan_base.h
SoftwarePLL::InterpolationSlope_
double InterpolationSlope_
Definition: SoftwarePLL.h:183
SoftwarePLL::_instances
static std::map< std::string, SoftwarePLL * > _instances
Definition: SoftwarePLL.h:198
SoftwarePLL::ClockFifo_
std::vector< double > ClockFifo_
Definition: SoftwarePLL.h:177
SoftwarePLL::IsInitialized
void IsInitialized(bool val)
Sets the initialization status, i.e. true, if SoftwarePLL is initialized, or false otherwise (inconsi...
Definition: SoftwarePLL.h:77
SoftwarePLL::InterpolationSlope
double InterpolationSlope() const
Returns the interpolated slope (gradient of the regression line)
Definition: SoftwarePLL.h:112
SoftwarePLL::Instance
static SoftwarePLL & Instance(const std::string &id="", int fifo_length=7)
Creates an instance of SoftwarePLL or returns an existing one, given its id.
Definition: SoftwarePLL.cpp:32
SoftwarePLL::MaxAllowedTimeDeviation_
static const double MaxAllowedTimeDeviation_
Definition: SoftwarePLL.h:174
SoftwarePLL::SoftwarePLL
SoftwarePLL(int fifo_length=7)
Definition: SoftwarePLL.h:187


sick_scan_xd
Author(s): Michael Lehning , Jochen Sprickerhof , Martin Günther
autogenerated on Fri Oct 25 2024 02:47:12