annotate docs/ResultsSpecificationDocument.tex @ 711:6062bbcc29b8

Updated Setup and Results XML to indicate future progress RE: Davids' Email.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Fri, 10 Apr 2015 10:16:52 +0100
parents 375410a5571d
children fef9e8337cfd
rev   line source
nicholas@9 1 \documentclass{article}
nicholas@9 2
nicholas@9 3 \usepackage[margin=2cm]{geometry}
nicholas@9 4 \usepackage{listings}
nicholas@9 5 \usepackage{color}
nicholas@9 6
nicholas@9 7 \begin{document}
nicholas@9 8
nicholas@9 9 \large APE Browser Tool - Results Specification Document
nicholas@9 10
nicholas@9 11 \section{Introduction}
nicholas@9 12 This document outlines the return XML document structure to hold the results from the Browser Evaluation Tool, specifically for the APE Interface.
nicholas@9 13
nicholas@9 14 \section{Root}
n@696 15 The root of the document is \texttt{BrowserEvaluationResult}.
nicholas@9 16
n@711 17 \section{testReults}
n@711 18 A 1st level node, contains all the results from a specific test instance defined by the audioHolder objects in the setup XML. Takes the audioElement as its children to define a full test and any test metrics.
n@696 19
n@696 20 \subsection{Attributes}
n@711 21 \begin{itemize}
n@711 22 \item \texttt{id} - The ID given to audioHolder in the project setup XML.
n@711 23 \item \texttt{repeatCount} - Specifies the repeat count of the test, there will be one testResult per test per repeat, this will help identify which repeat.
n@711 24 \end{itemize}
n@711 25
n@711 26 \subsection{AudioElement}
n@711 27 A 2nd level node, this contains the results for a specific audioElement.
n@711 28
n@711 29 \subsubsection{Attributes}
n@696 30 Has the following attributes, depending on the variables set in the Project Specification.
n@696 31 \begin{itemize}
n@696 32 \item \texttt{id} - Mandatory. This returns the ID of the track in question. This is either the value passed in from the project specification, or calculated based on the position in the list. For instance, in the automatic system, the first test sample has ID 0, the second ID 1 and so forth. The value passed in from the project specification can either be a string or a Number.
n@696 33 \item \texttt{url} - Mandatory. Returns the full URL given incase of errors or for later checking.
n@696 34 \end{itemize}
nicholas@9 35
n@711 36 \subsubsection{Value}
nicholas@9 37 One of these elements per track, containing the value between 0 and 100 relating the user rating of the track. This is a mandatory element.
BrechtDeMan@702 38 % float or int? (I, Brecht, am sort of indifferent here, it used to be down to .01 or something before, so maybe that or .1)
n@703 39 % Nick - Can be a float, was trying to remove/reduce ambiguity from pixel position. But can easily make it to .01
nicholas@9 40
n@711 41 \subsubsection{Comment}
n@696 42 One of these elements per track, containing any commenting data from the interface text boxes. Has the two following child nodes.
n@696 43 \begin{itemize}
n@696 44 \item \texttt{Question} - Returns the text next to the comment box
n@696 45 \item \texttt{Response} - Returns the text in the comment box
n@696 46 \end{itemize}
n@696 47
n@711 48 \subsubsection{metrics}
n@711 49 One of these holders per audioElement, containing the results from any of the enabled per element metrics in metricResult tags. The ID of each element represents the metricEnable tag element. The inner value contains the results.
n@711 50
n@711 51 % Will list specific response structures per metric!
n@711 52
n@711 53 \subsection{metrics}
n@711 54 One of these holders per testResults tag, containing the results from any of the enabled per test metrics in metricResult tags. The ID of each element represents the metricEnable tag element. The inner value contains the results.
n@711 55
n@711 56 % Will list specific response structures per metric!
n@711 57
n@696 58 \section{PreTest and PostTest}
n@696 59 A 1st level node, contains the response to any pre-test questions given in the project specification. These are stored in the same Comment node as outlined in the above audioElement.
n@696 60
n@696 61 The PostTest is a 1st level node and contains the response to any post-test questions given in the project specification.
nicholas@9 62
nicholas@9 63 \section{Session Data}
nicholas@9 64 This will contain any captured session data. Currently not implemented but here for future referencing.
BrechtDeMan@702 65 % I used to have a 'global' comment for each 'session' as well
nicholas@9 66
nicholas@9 67 \section{Globals}
nicholas@9 68 Contains any comment boxes which were specified in the APE project specification with the comment ID, comment text and the comment results.
nicholas@9 69
nicholas@9 70 \end{document}