HOPS
HOPS class reference
|
Class MHO_NormFX. More...
#include <MHO_NormFX.hh>
Public Member Functions | |
MHO_NormFX () | |
virtual | ~MHO_NormFX () |
void | SetWeights (weight_type *w) |
Setter for weights. More... | |
![]() | |
MHO_UnaryOperator () | |
virtual | ~MHO_UnaryOperator () |
virtual bool | Execute () override |
Executes operation using provided arguments and return type. More... | |
virtual bool | Execute () override=0 |
Function Execute. More... | |
virtual bool | Initialize () override |
Initializes the system using in-place or out-of-place arguments. More... | |
virtual bool | Initialize () override=0 |
Function Initialize. More... | |
MHO_Operator () | |
virtual void | SetArgs (const visibility_type *in, visibility_type *out) |
Setter for args. More... | |
virtual void | SetArgs (visibility_type *in) |
Setter for args. More... | |
![]() | |
MHO_Operator () | |
virtual | ~MHO_Operator () |
std::string | GetName () const |
Getter for operator name. More... | |
virtual double | Priority () const |
Get the the priority field value. More... | |
void | SetName (std::string name) |
Setter for operator name. More... | |
virtual void | SetPriority (const double &priority) |
Setter for operator priority (determines order of execution within a operator category) More... | |
Protected Types | |
using | XArgType = visibility_type |
Protected Member Functions | |
virtual bool | ExecuteInPlace (XArgType *in)=0 |
Function ExecuteInPlace. More... | |
virtual bool | ExecuteOutOfPlace (const XArgType *in, XArgType *out)=0 |
Function ExecuteOutOfPlace. More... | |
virtual bool | InitializeInPlace (XArgType *in)=0 |
Function InitializeInPlace. More... | |
virtual bool | InitializeOutOfPlace (const XArgType *in, XArgType *out)=0 |
Function InitializeOutOfPlace. More... | |
Protected Attributes | |
weight_type * | fWeights |
![]() | |
bool | fInPlace |
std::tuple< visibility_type * > | fInPlaceArgs |
std::tuple< const visibility_type *, visibility_type * > | fOutOfPlaceArgs |
Class MHO_NormFX.
wrapper class for the interface which provides the functionality of the original norm_fx.c operation this is a unary operator on visibilities that accepts weights
|
protected |
|
inline |
|
inlinevirtual |
|
protectedpure virtual |
Function ExecuteInPlace.
in | (XArgType*) |
Implements hops::MHO_UnaryOperator< visibility_type >.
Implemented in hops::MHO_SingleSidebandNormFX, and hops::MHO_MixedSidebandNormFX.
|
protectedpure virtual |
Function ExecuteOutOfPlace.
in | (const XArgType*) |
out | (XArgType*) |
Implements hops::MHO_UnaryOperator< visibility_type >.
Implemented in hops::MHO_SingleSidebandNormFX, and hops::MHO_MixedSidebandNormFX.
|
protectedpure virtual |
Function InitializeInPlace.
in | (XArgType*) |
Implements hops::MHO_UnaryOperator< visibility_type >.
Implemented in hops::MHO_SingleSidebandNormFX, and hops::MHO_MixedSidebandNormFX.
|
protectedpure virtual |
Function InitializeOutOfPlace.
in | (const XArgType*) |
out | (XArgType*) |
Implements hops::MHO_UnaryOperator< visibility_type >.
Implemented in hops::MHO_SingleSidebandNormFX, and hops::MHO_MixedSidebandNormFX.
|
inline |
Setter for weights.
w | Input pointer to weight_type array |
|
protected |