"""WavesExecuter - Analysis (:mod:`qurry.qurries.wavesqurry.analysis`)It is only for pendings and retrieve to remote backend."""fromtypingimportNamedTuple,Iterablefrom...qurriumimportAnalysisPrototype
[docs]classWEAnalysisInput(NamedTuple):"""To set the analysis."""ultimate_question:str"""ULtImAte QueStIoN."""
[docs]classWEAnalysisContent(NamedTuple):"""Analysis content."""ultimate_answer:int"""~The Answer to the Ultimate Question of Life, The Universe, and Everything.~"""dummy:int"""Just a dummy field."""
[docs]classWavesExecuterAnalysis(AnalysisPrototype[WEAnalysisInput,WEAnalysisContent]):"""The analysis of the experiment."""__name__="WavesQurryAnalysis"