Simbody  3.7
SimTK::TriggeredEventReporter Class Referenceabstract

TriggeredEventReporter is a subclass of EventReporter for events that occur when some condition is satisfied within the system. More...

+ Inheritance diagram for SimTK::TriggeredEventReporter:

Public Member Functions

 TriggeredEventReporter (const TriggeredEventReporter &clone)
 
TriggeredEventReporteroperator= (const TriggeredEventReporter &clone)
 
virtual ~TriggeredEventReporter ()
 
 TriggeredEventReporter (Stage requiredStage)
 Construct a new TriggeredEventReporter. More...
 
virtual Real getValue (const State &) const =0
 Get the value of the event trigger function for a State. More...
 
EventTriggerInfogetTriggerInfo ()
 Get an EventTriggerInfo object which can be used to customize when the event occurs. More...
 
Stage getRequiredStage () const
 Get the stage at which the trigger function will be evaluated. More...
 
- Public Member Functions inherited from SimTK::EventReporter
virtual ~EventReporter ()
 
virtual void handleEvent (const State &state) const =0
 This method is invoked to handle the event. More...
 

Detailed Description

TriggeredEventReporter is a subclass of EventReporter for events that occur when some condition is satisfied within the system.

This is implemented by means of an "event trigger function". For any State, the handler must be able to calculate the value of the function. When it passes through 0, that indicates the event has occurred. You can also customize when the event is triggered, for example to specify that it is only triggered when the function goes from negative to positive, not when it goes from positive to negative.

Constructor & Destructor Documentation

◆ TriggeredEventReporter() [1/2]

SimTK::TriggeredEventReporter::TriggeredEventReporter ( const TriggeredEventReporter clone)

◆ ~TriggeredEventReporter()

virtual SimTK::TriggeredEventReporter::~TriggeredEventReporter ( )
virtual

◆ TriggeredEventReporter() [2/2]

SimTK::TriggeredEventReporter::TriggeredEventReporter ( Stage  requiredStage)
explicit

Construct a new TriggeredEventReporter.

Parameters
requiredStagethe stage at which the trigger function will be evaluated

Member Function Documentation

◆ operator=()

TriggeredEventReporter& SimTK::TriggeredEventReporter::operator= ( const TriggeredEventReporter clone)

◆ getValue()

virtual Real SimTK::TriggeredEventReporter::getValue ( const State ) const
pure virtual

Get the value of the event trigger function for a State.

◆ getTriggerInfo()

EventTriggerInfo& SimTK::TriggeredEventReporter::getTriggerInfo ( )

Get an EventTriggerInfo object which can be used to customize when the event occurs.

◆ getRequiredStage()

Stage SimTK::TriggeredEventReporter::getRequiredStage ( ) const

Get the stage at which the trigger function will be evaluated.


The documentation for this class was generated from the following file: