annotate docs/ResultsSpecificationDocument.tex @ 1533:317faa29ab11

Feature Feature #1270: Outside reference object added. Some small bugs and GUI to solve.
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Thu, 23 Jul 2015 09:37:27 +0100
parents 766bff1a8f73
children 06fbaccf3b58
rev   line source
nickjillings@1528 1 \documentclass{article}
nickjillings@1528 2
nickjillings@1528 3 \usepackage[margin=2cm]{geometry}
nickjillings@1528 4 \usepackage{listings}
nickjillings@1528 5 \usepackage{color}
nickjillings@1528 6
nickjillings@1528 7 \begin{document}
nickjillings@1528 8
nickjillings@1528 9 \large APE Browser Tool - Results Specification Document
nickjillings@1528 10
nickjillings@1528 11 \section{Introduction}
nickjillings@1528 12 This document outlines the return XML document structure to hold the results from the Browser Evaluation Tool, specifically for the APE Interface.
nickjillings@1528 13
nickjillings@1528 14 \section{Root}
nickjillings@1528 15 The root of the document is \texttt{BrowserEvaluationResult}.
nickjillings@1528 16
nickjillings@1528 17 \section{testReults}
nickjillings@1528 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.
nickjillings@1528 19
nickjillings@1528 20 \subsection{Attributes}
nickjillings@1528 21 \begin{itemize}
nickjillings@1528 22 \item \texttt{id} - The ID given to audioHolder in the project setup XML.
nickjillings@1528 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.
nickjillings@1528 24 \end{itemize}
nickjillings@1528 25
nickjillings@1528 26 \subsection{AudioElement}
nickjillings@1528 27 A 2nd level node, this contains the results for a specific audioElement.
nickjillings@1528 28
nickjillings@1528 29 \subsubsection{Attributes}
nickjillings@1528 30 Has the following attributes, depending on the variables set in the Project Specification.
nickjillings@1528 31 \begin{itemize}
nickjillings@1528 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.
nickjillings@1528 33 \item \texttt{url} - Mandatory. Returns the full URL given incase of errors or for later checking.
nickjillings@1528 34 \end{itemize}
nickjillings@1528 35
nickjillings@1528 36 \subsubsection{Value}
nickjillings@1528 37 One of these elements per track, containing the floating value between 0 and 1 relating the user rating of the track. This is a mandatory element.
nickjillings@1528 38
nickjillings@1528 39 \subsubsection{Comment}
nickjillings@1528 40 One of these elements per track, containing any commenting data from the interface text boxes. Has the two following child nodes.
nickjillings@1528 41 \begin{itemize}
nickjillings@1528 42 \item \texttt{Question} - Returns the text next to the comment box
nickjillings@1528 43 \item \texttt{Response} - Returns the text in the comment box
nickjillings@1528 44 \end{itemize}
nickjillings@1528 45
nickjillings@1528 46 \subsubsection{metrics}
nickjillings@1528 47 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.
nickjillings@1528 48
nickjillings@1528 49 % Will list specific response structures per metric!
nickjillings@1528 50
nickjillings@1528 51 \subsection{metrics}
nickjillings@1528 52 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.
nickjillings@1528 53
nickjillings@1528 54 % Will list specific response structures per metric!
nickjillings@1528 55
nickjillings@1528 56 \section{PreTest and PostTest}
nickjillings@1528 57 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.
nickjillings@1528 58
nickjillings@1528 59 The PostTest is a 1st level node and contains the response to any post-test questions given in the project specification.
nickjillings@1528 60
nickjillings@1528 61 \section{Session Data}
nickjillings@1528 62 This will contain any captured session data. Currently not implemented but here for future referencing.
nickjillings@1528 63 % I used to have a 'global' comment for each 'session' as well
nickjillings@1528 64
nickjillings@1528 65 \end{document}