|
WSF
|
This class defines the interface to compute specific measurement errors. More...
#include <WsfSensorErrorModel.hpp>


Public Member Functions | |
| virtual std::unique_ptr< ErrorType > | ComputeMeasurementErrors (WsfSensorResult &aResult) const =0 |
| virtual void | ApplyMeasurementErrors (const ErrorType &aErrors, WsfSensorResult &aResult)=0 |
| void | ApplyMeasurementErrors (WsfSensorResult &aResult) final |
| Public Member Functions inherited from wsf::SensorErrorModelBase | |
| bool | ProcessInput (UtInput &aInput) override |
| virtual bool | Initialize (WsfSensorMode *aSensorModePtr) |
| SensorErrorModelBase * | Clone () const override=0 |
| Create a clone of "this" object. | |
| virtual bool | IsNullModel () const |
| Is this a null model (i.e., ApplyMeasurementErrors has no effect). | |
| virtual bool | IsStandardModel () const |
| bool | DebugEnabled () const |
| WsfSensorMode * | GetSensorMode () const |
| void | SetSensorMode (WsfSensorMode *aSensorModePtr) |
| Public Member Functions inherited from WsfObject | |
| WsfObject () | |
| This is the constructor for the WsfObject class. | |
| ~WsfObject () override | |
| This is the destructor for the WsfObject class. | |
| const char * | GetScriptClassName () const override |
| const std::string & | GetType () const |
| WsfStringId | GetTypeId () const |
| Get the string ID of the 'type' of the object. | |
| void | SetType (WsfStringId aType) |
| const std::string & | GetBaseType () const |
| WsfStringId | GetBaseTypeId () const |
| const TypeList & | GetTypeList () const |
| bool | IsA_TypeOf (WsfStringId aType) const |
| WsfObject & | operator= (const WsfObject &aRhs) |
| Assignment operator. | |
| template<typename T> | |
| void | Serialize (T &aBuff) |
| For XIO (de)serialization. | |
| const std::string & | GetName () const |
| WsfStringId | GetNameId () const |
| void | SetName (WsfStringId aName) |
Additional Inherited Members | |
| Public Types inherited from wsf::SensorErrorModelBase | |
| using | SensorModelTypes = WsfObjectTypeList<SensorErrorModelBase> |
| Public Types inherited from WsfObject | |
| typedef std::vector< WsfStringId > | TypeList |
| The list of types returned by GetTypeList. | |
| WsfObject (const WsfObject &aSrc) | |
| Copy constructor (for Clone()). | |
This class defines the interface to compute specific measurement errors.
|
pure virtual |
Apply measurement errors computed with ComputeMeasurementErrors to a sensor result.
| aErrors | The sensor errors as returned from ComputeMeasurementErrors. |
| aResult | The sensing chance result to which the error is applied. |
Implemented in wsf::AbsoluteSensorErrorModel, wsf::RadarSensorErrorModel, wsf::StandardSensorErrorModel, wsf::SurfaceWaveRadarSensorErrorModel, WsfEOIR_Sensor::EOIR_ErrorModel, WsfPassiveSensor::PassiveMode::PassiveErrorModel, and WsfSAR_Sensor::SAR_Mode::SAR_ErrorModel.
Referenced by ApplyMeasurementErrors().
|
inlinefinalvirtual |
Compute and apply measurement errors to the current detection attempt.
| aResult | The results of a sensing chance to be modified by the error model. |
Implements wsf::SensorErrorModelBase.
References ApplyMeasurementErrors(), and ComputeMeasurementErrors().
|
pure virtual |
Compute the sensor errors associated with this model and return them.
| aResult | The sensing chance result that is used as a basis for the error computation. |
Implemented in wsf::AbsoluteSensorErrorModel, wsf::StandardSensorErrorModel, WsfPassiveSensor::PassiveMode::PassiveErrorModel, and WsfSAR_Sensor::SAR_Mode::SAR_ErrorModel.
Referenced by ApplyMeasurementErrors().