ORKHolePegTestResult Class Reference
Inherits from | ORKResult : NSObject |
---|---|
Declared in | ORKHolePegTestResult.h |
The ORKHolePegTestResult
class records the results of a hole peg test.
The hole peg test result object records the number of pegs, an array of move samples, the total duration and also various attributes of the hole peg test.
The hole peg test samples are generated by the framework as the task proceeds. When the task completes, it may be appropriate to serialize them for transmission to a server, or to immediately perform analysis on them.
movingDirection
The hole peg test moving direction.
@property (nonatomic, assign) ORKBodySagittal movingDirection
Declared In
ORKHolePegTestResult.h
dominantHandTested
The step is for the dominant hand.
@property (nonatomic, assign, getter=isDominantHandTested) BOOL dominantHandTested
Declared In
ORKHolePegTestResult.h
numberOfPegs
The number of pegs to test.
@property (nonatomic, assign) NSInteger numberOfPegs
Declared In
ORKHolePegTestResult.h
threshold
The detection area sensitivity.
@property (nonatomic, assign) double threshold
Declared In
ORKHolePegTestResult.h
rotated
The hole peg test also assesses the rotation capabilities.
@property (nonatomic, assign, getter=isRotated) BOOL rotated
Declared In
ORKHolePegTestResult.h
totalSuccesses
The number of succeeded moves (out of numberOfPegs
possible).
@property (nonatomic, assign) NSInteger totalSuccesses
Declared In
ORKHolePegTestResult.h
totalFailures
The number of failed moves.
@property (nonatomic, assign) NSInteger totalFailures
Declared In
ORKHolePegTestResult.h
totalTime
The total time needed to perform the test step (ie. the sum of all samples time).
@property (nonatomic, assign) NSTimeInterval totalTime
Declared In
ORKHolePegTestResult.h
totalDistance
The total distance needed to perform the test step (ie. the sum of all samples distance).
@property (nonatomic, assign) double totalDistance
Declared In
ORKHolePegTestResult.h
samples
An array of collected samples, in which each item is an ORKHolePegTestSample
object that represents a peg move.
@property (nonatomic, copy, nullable) NSArray *samples
Declared In
ORKHolePegTestResult.h