Changes between Version 3 and Version 4 of PlugIns/GenericEvents/VR-Applications


Ignore:
Timestamp:
10/04/17 16:14:56 (7 years ago)
Author:
pharms
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PlugIns/GenericEvents/VR-Applications

    v3 v4  
    77Both scripts need to be configured with a valid endpoint of a Generic Event Monitor instance. When correctly setup, the send JSON message as required to the monitor instance. The monitor in turn stores the data locally. 
    88 
    9 Using AutoQUEST and the Generic Events Plugin, the data can be read and processed. For this, the command '''{{{parseDirGenericEvents}}}''' must be called first to load the data. Then other commands like '''{{{generateTaskTrees}}}''' and '''{{{evaluateUsability}}}''' can be used for further analysis. 
     9Using AutoQUEST and the Generic Events Plugin, the data can be read and processed. For this, the command '''{{{parseDirGenericEvents}}}''' must be called first to load the data. Then other commands like '''{{{generateTaskTrees}}}''' and '''{{{evaluateUsability}}}''' can be used for further analysis. An example script for use with AutoQUEST is the following: 
     10 
     11{{{ 
     12% read the recorded data. Thereby exclude events with type "eventToExclude". In addition, exclude events of type "eventWithTargetToExclude" where the target id is "targetToExclude" 
     13 
     14parseDirGenericEvents <directory containing data> <name of sequences within AutoQUEST> eventToExclude eventWithTargetToExclude.targetToExclude 
     15 
     16% generate the task trees for the recorded data 
     17generateTaskTree <name of sequences within AutoQUEST> <name of task trees within AutoQUEST> 
     18 
     19% perform the usability smell detection for the task trees 
     20evaluateUsability <name of task trees within AutoQUEST> <name of evaluation results within AutoQUEST> 
     21}}}