You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sLDA-OneVsOne-Voting-Test.xml 67KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316
  1. <OpenViBE-Scenario>
  2. <FormatVersion>1</FormatVersion>
  3. <Creator>openvibe</Creator>
  4. <CreatorVersion>2.0</CreatorVersion>
  5. <Settings></Settings>
  6. <Inputs></Inputs>
  7. <Outputs></Outputs>
  8. <Boxes>
  9. <Box>
  10. <Identifier>(0x03dba115, 0x4c1f8a3a)</Identifier>
  11. <Name>Generic stream reader</Name>
  12. <AlgorithmClassIdentifier>(0x6468099f, 0x0370095a)</AlgorithmClassIdentifier>
  13. <Outputs>
  14. <Output>
  15. <TypeIdentifier>(0x403488e7, 0x565d70b6)</TypeIdentifier>
  16. <Name>Output stream 1</Name>
  17. </Output>
  18. <Output>
  19. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  20. <Name>Output stream 2</Name>
  21. </Output>
  22. <Output>
  23. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  24. <Name>Output stream 3</Name>
  25. </Output>
  26. <Output>
  27. <TypeIdentifier>(0x013df452, 0xa3a8879a)</TypeIdentifier>
  28. <Name>Output stream 4</Name>
  29. </Output>
  30. </Outputs>
  31. <Settings>
  32. <Setting>
  33. <TypeIdentifier>(0x330306dd, 0x74a95f98)</TypeIdentifier>
  34. <Name>Filename</Name>
  35. <DefaultValue></DefaultValue>
  36. <Value>${Path_Data}/scenarios/signals/bci-ssvep-training.ov</Value>
  37. <Modifiability>false</Modifiability>
  38. </Setting>
  39. </Settings>
  40. <Attributes>
  41. <Attribute>
  42. <Identifier>(0x17ee7c08, 0x94c14893)</Identifier>
  43. <Value></Value>
  44. </Attribute>
  45. <Attribute>
  46. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  47. <Value>-384</Value>
  48. </Attribute>
  49. <Attribute>
  50. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  51. <Value>848</Value>
  52. </Attribute>
  53. <Attribute>
  54. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  55. <Value></Value>
  56. </Attribute>
  57. <Attribute>
  58. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  59. <Value>(0xf37b8e7a, 0x1bc33e4e)</Value>
  60. </Attribute>
  61. <Attribute>
  62. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  63. <Value>(0x00000000, 0x0605dd92)</Value>
  64. </Attribute>
  65. <Attribute>
  66. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  67. <Value>1</Value>
  68. </Attribute>
  69. <Attribute>
  70. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  71. <Value>1</Value>
  72. </Attribute>
  73. </Attributes>
  74. </Box>
  75. <Box>
  76. <Identifier>(0x08ab469c, 0x10c9257e)</Identifier>
  77. <Name>Identity</Name>
  78. <AlgorithmClassIdentifier>(0x5dffe431, 0x35215c50)</AlgorithmClassIdentifier>
  79. <Inputs>
  80. <Input>
  81. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  82. <Name>Input stream 1</Name>
  83. </Input>
  84. <Input>
  85. <TypeIdentifier>(0x17341935, 0x152ff448)</TypeIdentifier>
  86. <Name>Input stream 2</Name>
  87. </Input>
  88. </Inputs>
  89. <Outputs>
  90. <Output>
  91. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  92. <Name>Output stream 1</Name>
  93. </Output>
  94. <Output>
  95. <TypeIdentifier>(0x17341935, 0x152ff448)</TypeIdentifier>
  96. <Name>Output stream 2</Name>
  97. </Output>
  98. </Outputs>
  99. <Attributes>
  100. <Attribute>
  101. <Identifier>(0x17ee7c08, 0x94c14893)</Identifier>
  102. <Value></Value>
  103. </Attribute>
  104. <Attribute>
  105. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  106. <Value>592</Value>
  107. </Attribute>
  108. <Attribute>
  109. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  110. <Value>864</Value>
  111. </Attribute>
  112. <Attribute>
  113. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  114. <Value></Value>
  115. </Attribute>
  116. <Attribute>
  117. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  118. <Value>(0xa8ffe2a3, 0x27038f03)</Value>
  119. </Attribute>
  120. <Attribute>
  121. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  122. <Value></Value>
  123. </Attribute>
  124. <Attribute>
  125. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  126. <Value>1</Value>
  127. </Attribute>
  128. <Attribute>
  129. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  130. <Value>1</Value>
  131. </Attribute>
  132. <Attribute>
  133. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  134. <Value></Value>
  135. </Attribute>
  136. </Attributes>
  137. </Box>
  138. <Box>
  139. <Identifier>(0x0e30ed60, 0x478cbcea)</Identifier>
  140. <Name>DSP</Name>
  141. <AlgorithmClassIdentifier>(0x00e26fa1, 0x1dbab1b2)</AlgorithmClassIdentifier>
  142. <Inputs>
  143. <Input>
  144. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  145. <Name>Input - A</Name>
  146. </Input>
  147. </Inputs>
  148. <Outputs>
  149. <Output>
  150. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  151. <Name>Output</Name>
  152. </Output>
  153. </Outputs>
  154. <Settings>
  155. <Setting>
  156. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  157. <Name>Equation</Name>
  158. <DefaultValue>x</DefaultValue>
  159. <Value>log(1+x)</Value>
  160. <Modifiability>false</Modifiability>
  161. </Setting>
  162. </Settings>
  163. <Attributes>
  164. <Attribute>
  165. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  166. <Value>368</Value>
  167. </Attribute>
  168. <Attribute>
  169. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  170. <Value>1024</Value>
  171. </Attribute>
  172. <Attribute>
  173. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  174. <Value></Value>
  175. </Attribute>
  176. <Attribute>
  177. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  178. <Value>(0x21889dc4, 0x1126497e)</Value>
  179. </Attribute>
  180. <Attribute>
  181. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  182. <Value></Value>
  183. </Attribute>
  184. <Attribute>
  185. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  186. <Value>(0x00000000, 0x00b1465e)</Value>
  187. </Attribute>
  188. <Attribute>
  189. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  190. <Value>1</Value>
  191. </Attribute>
  192. <Attribute>
  193. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  194. <Value>1</Value>
  195. </Attribute>
  196. <Attribute>
  197. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  198. <Value>1</Value>
  199. </Attribute>
  200. <Attribute>
  201. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  202. <Value></Value>
  203. </Attribute>
  204. </Attributes>
  205. </Box>
  206. <Box>
  207. <Identifier>(0x1300340f, 0x7c5de533)</Identifier>
  208. <Name>Sg Avg</Name>
  209. <AlgorithmClassIdentifier>(0x00642c4d, 0x5df7e50a)</AlgorithmClassIdentifier>
  210. <Inputs>
  211. <Input>
  212. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  213. <Name>Input signal</Name>
  214. </Input>
  215. </Inputs>
  216. <Outputs>
  217. <Output>
  218. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  219. <Name>Filtered signal</Name>
  220. </Output>
  221. </Outputs>
  222. <Attributes>
  223. <Attribute>
  224. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  225. <Value>304</Value>
  226. </Attribute>
  227. <Attribute>
  228. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  229. <Value>1024</Value>
  230. </Attribute>
  231. <Attribute>
  232. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  233. <Value>(0xc5ff4187, 0xffc5f432)</Value>
  234. </Attribute>
  235. <Attribute>
  236. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  237. <Value>(0x00000000, 0x00c9d9cd)</Value>
  238. </Attribute>
  239. <Attribute>
  240. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  241. <Value>1</Value>
  242. </Attribute>
  243. <Attribute>
  244. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  245. <Value>1</Value>
  246. </Attribute>
  247. </Attributes>
  248. </Box>
  249. <Box>
  250. <Identifier>(0x219be4a9, 0x6e609516)</Identifier>
  251. <Name>Sg Avg</Name>
  252. <AlgorithmClassIdentifier>(0x00642c4d, 0x5df7e50a)</AlgorithmClassIdentifier>
  253. <Inputs>
  254. <Input>
  255. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  256. <Name>Input signal</Name>
  257. </Input>
  258. </Inputs>
  259. <Outputs>
  260. <Output>
  261. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  262. <Name>Filtered signal</Name>
  263. </Output>
  264. </Outputs>
  265. <Attributes>
  266. <Attribute>
  267. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  268. <Value>320</Value>
  269. </Attribute>
  270. <Attribute>
  271. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  272. <Value>576</Value>
  273. </Attribute>
  274. <Attribute>
  275. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  276. <Value>(0xc5ff4187, 0xffc5f432)</Value>
  277. </Attribute>
  278. <Attribute>
  279. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  280. <Value>(0x00000000, 0x00acd187)</Value>
  281. </Attribute>
  282. <Attribute>
  283. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  284. <Value>1</Value>
  285. </Attribute>
  286. <Attribute>
  287. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  288. <Value>1</Value>
  289. </Attribute>
  290. </Attributes>
  291. </Box>
  292. <Box>
  293. <Identifier>(0x2655c041, 0x15f4a40c)</Identifier>
  294. <Name>SBE</Name>
  295. <AlgorithmClassIdentifier>(0x426163d1, 0x324237b0)</AlgorithmClassIdentifier>
  296. <Inputs>
  297. <Input>
  298. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  299. <Name>Input signal</Name>
  300. </Input>
  301. <Input>
  302. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  303. <Name>Input stimulations</Name>
  304. </Input>
  305. </Inputs>
  306. <Outputs>
  307. <Output>
  308. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  309. <Name>Epoched signal</Name>
  310. </Output>
  311. </Outputs>
  312. <Settings>
  313. <Setting>
  314. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  315. <Name>Epoch duration (in sec)</Name>
  316. <DefaultValue>1</DefaultValue>
  317. <Value>6.00</Value>
  318. <Modifiability>false</Modifiability>
  319. </Setting>
  320. <Setting>
  321. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  322. <Name>Epoch offset (in sec)</Name>
  323. <DefaultValue>0.5</DefaultValue>
  324. <Value>1.00</Value>
  325. <Modifiability>false</Modifiability>
  326. </Setting>
  327. <Setting>
  328. <TypeIdentifier>(0x2c132d6e, 0x44ab0d97)</TypeIdentifier>
  329. <Name>Stimulation to epoch from</Name>
  330. <DefaultValue>OVTK_StimulationId_Label_00</DefaultValue>
  331. <Value>OVTK_StimulationId_Target</Value>
  332. <Modifiability>false</Modifiability>
  333. </Setting>
  334. </Settings>
  335. <Attributes>
  336. <Attribute>
  337. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  338. <Value>64</Value>
  339. </Attribute>
  340. <Attribute>
  341. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  342. <Value>576</Value>
  343. </Attribute>
  344. <Attribute>
  345. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  346. <Value>(0xa79941ae, 0x80708445)</Value>
  347. </Attribute>
  348. <Attribute>
  349. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  350. <Value>1</Value>
  351. </Attribute>
  352. <Attribute>
  353. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  354. <Value>3</Value>
  355. </Attribute>
  356. <Attribute>
  357. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  358. <Value>2</Value>
  359. </Attribute>
  360. </Attributes>
  361. </Box>
  362. <Box>
  363. <Identifier>(0x2655c041, 0x15f4a40d)</Identifier>
  364. <Name>SBE</Name>
  365. <AlgorithmClassIdentifier>(0x426163d1, 0x324237b0)</AlgorithmClassIdentifier>
  366. <Inputs>
  367. <Input>
  368. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  369. <Name>Input signal</Name>
  370. </Input>
  371. <Input>
  372. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  373. <Name>Input stimulations</Name>
  374. </Input>
  375. </Inputs>
  376. <Outputs>
  377. <Output>
  378. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  379. <Name>Epoched signal</Name>
  380. </Output>
  381. </Outputs>
  382. <Settings>
  383. <Setting>
  384. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  385. <Name>Epoch duration (in sec)</Name>
  386. <DefaultValue>1</DefaultValue>
  387. <Value>6.00</Value>
  388. <Modifiability>false</Modifiability>
  389. </Setting>
  390. <Setting>
  391. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  392. <Name>Epoch offset (in sec)</Name>
  393. <DefaultValue>0.5</DefaultValue>
  394. <Value>1.00</Value>
  395. <Modifiability>false</Modifiability>
  396. </Setting>
  397. <Setting>
  398. <TypeIdentifier>(0x2c132d6e, 0x44ab0d97)</TypeIdentifier>
  399. <Name>Stimulation to epoch from</Name>
  400. <DefaultValue>OVTK_StimulationId_Label_00</DefaultValue>
  401. <Value>OVTK_StimulationId_Target</Value>
  402. <Modifiability>false</Modifiability>
  403. </Setting>
  404. </Settings>
  405. <Attributes>
  406. <Attribute>
  407. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  408. <Value>64</Value>
  409. </Attribute>
  410. <Attribute>
  411. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  412. <Value>816</Value>
  413. </Attribute>
  414. <Attribute>
  415. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  416. <Value>(0xa79941ae, 0x80708445)</Value>
  417. </Attribute>
  418. <Attribute>
  419. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  420. <Value>1</Value>
  421. </Attribute>
  422. <Attribute>
  423. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  424. <Value>3</Value>
  425. </Attribute>
  426. <Attribute>
  427. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  428. <Value>2</Value>
  429. </Attribute>
  430. </Attributes>
  431. </Box>
  432. <Box>
  433. <Identifier>(0x2655c041, 0x15f4a40e)</Identifier>
  434. <Name>SBE</Name>
  435. <AlgorithmClassIdentifier>(0x426163d1, 0x324237b0)</AlgorithmClassIdentifier>
  436. <Inputs>
  437. <Input>
  438. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  439. <Name>Input signal</Name>
  440. </Input>
  441. <Input>
  442. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  443. <Name>Input stimulations</Name>
  444. </Input>
  445. </Inputs>
  446. <Outputs>
  447. <Output>
  448. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  449. <Name>Epoched signal</Name>
  450. </Output>
  451. </Outputs>
  452. <Settings>
  453. <Setting>
  454. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  455. <Name>Epoch duration (in sec)</Name>
  456. <DefaultValue>1</DefaultValue>
  457. <Value>6.00</Value>
  458. <Modifiability>false</Modifiability>
  459. </Setting>
  460. <Setting>
  461. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  462. <Name>Epoch offset (in sec)</Name>
  463. <DefaultValue>0.5</DefaultValue>
  464. <Value>1.00</Value>
  465. <Modifiability>false</Modifiability>
  466. </Setting>
  467. <Setting>
  468. <TypeIdentifier>(0x2c132d6e, 0x44ab0d97)</TypeIdentifier>
  469. <Name>Stimulation to epoch from</Name>
  470. <DefaultValue>OVTK_StimulationId_Label_00</DefaultValue>
  471. <Value>OVTK_StimulationId_Target</Value>
  472. <Modifiability>false</Modifiability>
  473. </Setting>
  474. </Settings>
  475. <Attributes>
  476. <Attribute>
  477. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  478. <Value>64</Value>
  479. </Attribute>
  480. <Attribute>
  481. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  482. <Value>1040</Value>
  483. </Attribute>
  484. <Attribute>
  485. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  486. <Value>(0xa79941ae, 0x80708445)</Value>
  487. </Attribute>
  488. <Attribute>
  489. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  490. <Value>1</Value>
  491. </Attribute>
  492. <Attribute>
  493. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  494. <Value>3</Value>
  495. </Attribute>
  496. <Attribute>
  497. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  498. <Value>2</Value>
  499. </Attribute>
  500. </Attributes>
  501. </Box>
  502. <Box>
  503. <Identifier>(0x27849ab5, 0x2467a8be)</Identifier>
  504. <Name>DSP</Name>
  505. <AlgorithmClassIdentifier>(0x00e26fa1, 0x1dbab1b2)</AlgorithmClassIdentifier>
  506. <Inputs>
  507. <Input>
  508. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  509. <Name>Input - A</Name>
  510. </Input>
  511. </Inputs>
  512. <Outputs>
  513. <Output>
  514. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  515. <Name>Output</Name>
  516. </Output>
  517. </Outputs>
  518. <Settings>
  519. <Setting>
  520. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  521. <Name>Equation</Name>
  522. <DefaultValue>x</DefaultValue>
  523. <Value>log(1+x)</Value>
  524. <Modifiability>false</Modifiability>
  525. </Setting>
  526. </Settings>
  527. <Attributes>
  528. <Attribute>
  529. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  530. <Value>384</Value>
  531. </Attribute>
  532. <Attribute>
  533. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  534. <Value>576</Value>
  535. </Attribute>
  536. <Attribute>
  537. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  538. <Value></Value>
  539. </Attribute>
  540. <Attribute>
  541. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  542. <Value>(0x21889dc4, 0x1126497e)</Value>
  543. </Attribute>
  544. <Attribute>
  545. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  546. <Value></Value>
  547. </Attribute>
  548. <Attribute>
  549. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  550. <Value>(0x00000000, 0x00b22076)</Value>
  551. </Attribute>
  552. <Attribute>
  553. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  554. <Value>1</Value>
  555. </Attribute>
  556. <Attribute>
  557. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  558. <Value>1</Value>
  559. </Attribute>
  560. <Attribute>
  561. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  562. <Value>1</Value>
  563. </Attribute>
  564. <Attribute>
  565. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  566. <Value></Value>
  567. </Attribute>
  568. </Attributes>
  569. </Box>
  570. <Box>
  571. <Identifier>(0x2a62aa62, 0x22b9aa6a)</Identifier>
  572. <Name>Player Controller</Name>
  573. <AlgorithmClassIdentifier>(0x5f426dce, 0x08456e13)</AlgorithmClassIdentifier>
  574. <Inputs>
  575. <Input>
  576. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  577. <Name>Stimulations</Name>
  578. </Input>
  579. </Inputs>
  580. <Settings>
  581. <Setting>
  582. <TypeIdentifier>(0x2c132d6e, 0x44ab0d97)</TypeIdentifier>
  583. <Name>Stimulation name</Name>
  584. <DefaultValue>OVTK_StimulationId_Label_00</DefaultValue>
  585. <Value>OVTK_StimulationId_TrainCompleted</Value>
  586. <Modifiability>false</Modifiability>
  587. </Setting>
  588. <Setting>
  589. <TypeIdentifier>(0xcc14d8d6, 0xf27ecb73)</TypeIdentifier>
  590. <Name>Action to perform</Name>
  591. <DefaultValue>Pause</DefaultValue>
  592. <Value>Stop</Value>
  593. <Modifiability>false</Modifiability>
  594. </Setting>
  595. </Settings>
  596. <Attributes>
  597. <Attribute>
  598. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  599. <Value>864</Value>
  600. </Attribute>
  601. <Attribute>
  602. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  603. <Value>736</Value>
  604. </Attribute>
  605. <Attribute>
  606. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  607. <Value>(0x568d148e, 0x650792b3)</Value>
  608. </Attribute>
  609. <Attribute>
  610. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  611. <Value>(0x00000000, 0x0504c48f)</Value>
  612. </Attribute>
  613. <Attribute>
  614. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  615. <Value>2</Value>
  616. </Attribute>
  617. <Attribute>
  618. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  619. <Value>1</Value>
  620. </Attribute>
  621. </Attributes>
  622. </Box>
  623. <Box>
  624. <Identifier>(0x348c88da, 0x652055d3)</Identifier>
  625. <Name>DSP</Name>
  626. <AlgorithmClassIdentifier>(0x00e26fa1, 0x1dbab1b2)</AlgorithmClassIdentifier>
  627. <Inputs>
  628. <Input>
  629. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  630. <Name>Input - A</Name>
  631. </Input>
  632. </Inputs>
  633. <Outputs>
  634. <Output>
  635. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  636. <Name>Output</Name>
  637. </Output>
  638. </Outputs>
  639. <Settings>
  640. <Setting>
  641. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  642. <Name>Equation</Name>
  643. <DefaultValue>x</DefaultValue>
  644. <Value>log(1+x)</Value>
  645. <Modifiability>false</Modifiability>
  646. </Setting>
  647. </Settings>
  648. <Attributes>
  649. <Attribute>
  650. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  651. <Value>368</Value>
  652. </Attribute>
  653. <Attribute>
  654. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  655. <Value>816</Value>
  656. </Attribute>
  657. <Attribute>
  658. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  659. <Value></Value>
  660. </Attribute>
  661. <Attribute>
  662. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  663. <Value>(0x21889dc4, 0x1126497e)</Value>
  664. </Attribute>
  665. <Attribute>
  666. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  667. <Value></Value>
  668. </Attribute>
  669. <Attribute>
  670. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  671. <Value>(0x00000000, 0x00b1897a)</Value>
  672. </Attribute>
  673. <Attribute>
  674. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  675. <Value>1</Value>
  676. </Attribute>
  677. <Attribute>
  678. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  679. <Value>1</Value>
  680. </Attribute>
  681. <Attribute>
  682. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  683. <Value>1</Value>
  684. </Attribute>
  685. <Attribute>
  686. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  687. <Value></Value>
  688. </Attribute>
  689. </Attributes>
  690. </Box>
  691. <Box>
  692. <Identifier>(0x3a95d3c2, 0x6a571226)</Identifier>
  693. <Name>DSP</Name>
  694. <AlgorithmClassIdentifier>(0x00e26fa1, 0x1dbab1b2)</AlgorithmClassIdentifier>
  695. <Inputs>
  696. <Input>
  697. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  698. <Name>Input - A</Name>
  699. </Input>
  700. </Inputs>
  701. <Outputs>
  702. <Output>
  703. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  704. <Name>Output</Name>
  705. </Output>
  706. </Outputs>
  707. <Settings>
  708. <Setting>
  709. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  710. <Name>Equation</Name>
  711. <DefaultValue>x</DefaultValue>
  712. <Value>x*x</Value>
  713. <Modifiability>false</Modifiability>
  714. </Setting>
  715. </Settings>
  716. <Attributes>
  717. <Attribute>
  718. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  719. <Value>240</Value>
  720. </Attribute>
  721. <Attribute>
  722. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  723. <Value>576</Value>
  724. </Attribute>
  725. <Attribute>
  726. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  727. <Value></Value>
  728. </Attribute>
  729. <Attribute>
  730. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  731. <Value>(0x21889dc4, 0x1126497e)</Value>
  732. </Attribute>
  733. <Attribute>
  734. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  735. <Value></Value>
  736. </Attribute>
  737. <Attribute>
  738. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  739. <Value>(0x00000000, 0x00bc8c12)</Value>
  740. </Attribute>
  741. <Attribute>
  742. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  743. <Value>1</Value>
  744. </Attribute>
  745. <Attribute>
  746. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  747. <Value>1</Value>
  748. </Attribute>
  749. <Attribute>
  750. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  751. <Value>1</Value>
  752. </Attribute>
  753. <Attribute>
  754. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  755. <Value></Value>
  756. </Attribute>
  757. </Attributes>
  758. </Box>
  759. <Box>
  760. <Identifier>(0x415522f9, 0x54a34c1d)</Identifier>
  761. <Name>DSP</Name>
  762. <AlgorithmClassIdentifier>(0x00e26fa1, 0x1dbab1b2)</AlgorithmClassIdentifier>
  763. <Inputs>
  764. <Input>
  765. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  766. <Name>Input - A</Name>
  767. </Input>
  768. </Inputs>
  769. <Outputs>
  770. <Output>
  771. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  772. <Name>Output</Name>
  773. </Output>
  774. </Outputs>
  775. <Settings>
  776. <Setting>
  777. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  778. <Name>Equation</Name>
  779. <DefaultValue>x</DefaultValue>
  780. <Value>x*x</Value>
  781. <Modifiability>false</Modifiability>
  782. </Setting>
  783. </Settings>
  784. <Attributes>
  785. <Attribute>
  786. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  787. <Value>224</Value>
  788. </Attribute>
  789. <Attribute>
  790. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  791. <Value>1024</Value>
  792. </Attribute>
  793. <Attribute>
  794. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  795. <Value></Value>
  796. </Attribute>
  797. <Attribute>
  798. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  799. <Value>(0x21889dc4, 0x1126497e)</Value>
  800. </Attribute>
  801. <Attribute>
  802. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  803. <Value></Value>
  804. </Attribute>
  805. <Attribute>
  806. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  807. <Value>(0x00000000, 0x00a83b22)</Value>
  808. </Attribute>
  809. <Attribute>
  810. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  811. <Value>1</Value>
  812. </Attribute>
  813. <Attribute>
  814. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  815. <Value>1</Value>
  816. </Attribute>
  817. <Attribute>
  818. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  819. <Value>1</Value>
  820. </Attribute>
  821. <Attribute>
  822. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  823. <Value></Value>
  824. </Attribute>
  825. </Attributes>
  826. </Box>
  827. <Box>
  828. <Identifier>(0x4b0bfe3e, 0x2c3a7e5c)</Identifier>
  829. <Name>Sg Avg</Name>
  830. <AlgorithmClassIdentifier>(0x00642c4d, 0x5df7e50a)</AlgorithmClassIdentifier>
  831. <Inputs>
  832. <Input>
  833. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  834. <Name>Input signal</Name>
  835. </Input>
  836. </Inputs>
  837. <Outputs>
  838. <Output>
  839. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  840. <Name>Filtered signal</Name>
  841. </Output>
  842. </Outputs>
  843. <Attributes>
  844. <Attribute>
  845. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  846. <Value>304</Value>
  847. </Attribute>
  848. <Attribute>
  849. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  850. <Value>816</Value>
  851. </Attribute>
  852. <Attribute>
  853. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  854. <Value>(0xc5ff4187, 0xffc5f432)</Value>
  855. </Attribute>
  856. <Attribute>
  857. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  858. <Value>(0x00000000, 0x00b24205)</Value>
  859. </Attribute>
  860. <Attribute>
  861. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  862. <Value>1</Value>
  863. </Attribute>
  864. <Attribute>
  865. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  866. <Value>1</Value>
  867. </Attribute>
  868. </Attributes>
  869. </Box>
  870. <Box>
  871. <Identifier>(0x4f494c33, 0x2f8af0f0)</Identifier>
  872. <Name>TBE</Name>
  873. <AlgorithmClassIdentifier>(0x00777fa0, 0x5dc3f560)</AlgorithmClassIdentifier>
  874. <Inputs>
  875. <Input>
  876. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  877. <Name>Input signal</Name>
  878. </Input>
  879. </Inputs>
  880. <Outputs>
  881. <Output>
  882. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  883. <Name>Epoched signal</Name>
  884. </Output>
  885. </Outputs>
  886. <Settings>
  887. <Setting>
  888. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  889. <Name>Epoch duration (in sec)</Name>
  890. <DefaultValue>1</DefaultValue>
  891. <Value>1</Value>
  892. <Modifiability>false</Modifiability>
  893. </Setting>
  894. <Setting>
  895. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  896. <Name>Epoch intervals (in sec)</Name>
  897. <DefaultValue>0.5</DefaultValue>
  898. <Value>0.5</Value>
  899. <Modifiability>false</Modifiability>
  900. </Setting>
  901. </Settings>
  902. <Attributes>
  903. <Attribute>
  904. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  905. <Value>160</Value>
  906. </Attribute>
  907. <Attribute>
  908. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  909. <Value>576</Value>
  910. </Attribute>
  911. <Attribute>
  912. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  913. <Value>(0xc5ff41e9, 0xccc59a01)</Value>
  914. </Attribute>
  915. <Attribute>
  916. <Identifier>(0x8d21ff41, 0xdf6afe7e)</Identifier>
  917. <Value>${__volatile_ScenarioDir}/configuration/time-based-epoching.cfg</Value>
  918. </Attribute>
  919. <Attribute>
  920. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  921. <Value>1</Value>
  922. </Attribute>
  923. <Attribute>
  924. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  925. <Value>2</Value>
  926. </Attribute>
  927. <Attribute>
  928. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  929. <Value>1</Value>
  930. </Attribute>
  931. </Attributes>
  932. </Box>
  933. <Box>
  934. <Identifier>(0x4f494c33, 0x2f8af0f1)</Identifier>
  935. <Name>TBE</Name>
  936. <AlgorithmClassIdentifier>(0x00777fa0, 0x5dc3f560)</AlgorithmClassIdentifier>
  937. <Inputs>
  938. <Input>
  939. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  940. <Name>Input signal</Name>
  941. </Input>
  942. </Inputs>
  943. <Outputs>
  944. <Output>
  945. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  946. <Name>Epoched signal</Name>
  947. </Output>
  948. </Outputs>
  949. <Settings>
  950. <Setting>
  951. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  952. <Name>Epoch duration (in sec)</Name>
  953. <DefaultValue>1</DefaultValue>
  954. <Value>1</Value>
  955. <Modifiability>false</Modifiability>
  956. </Setting>
  957. <Setting>
  958. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  959. <Name>Epoch intervals (in sec)</Name>
  960. <DefaultValue>0.5</DefaultValue>
  961. <Value>0.5</Value>
  962. <Modifiability>false</Modifiability>
  963. </Setting>
  964. </Settings>
  965. <Attributes>
  966. <Attribute>
  967. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  968. <Value>144</Value>
  969. </Attribute>
  970. <Attribute>
  971. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  972. <Value>816</Value>
  973. </Attribute>
  974. <Attribute>
  975. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  976. <Value>(0xc5ff41e9, 0xccc59a01)</Value>
  977. </Attribute>
  978. <Attribute>
  979. <Identifier>(0x8d21ff41, 0xdf6afe7e)</Identifier>
  980. <Value>${__volatile_ScenarioDir}/configuration/time-based-epoching.cfg</Value>
  981. </Attribute>
  982. <Attribute>
  983. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  984. <Value>1</Value>
  985. </Attribute>
  986. <Attribute>
  987. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  988. <Value>2</Value>
  989. </Attribute>
  990. <Attribute>
  991. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  992. <Value>1</Value>
  993. </Attribute>
  994. </Attributes>
  995. </Box>
  996. <Box>
  997. <Identifier>(0x4f494c33, 0x2f8af0f2)</Identifier>
  998. <Name>TBE</Name>
  999. <AlgorithmClassIdentifier>(0x00777fa0, 0x5dc3f560)</AlgorithmClassIdentifier>
  1000. <Inputs>
  1001. <Input>
  1002. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1003. <Name>Input signal</Name>
  1004. </Input>
  1005. </Inputs>
  1006. <Outputs>
  1007. <Output>
  1008. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1009. <Name>Epoched signal</Name>
  1010. </Output>
  1011. </Outputs>
  1012. <Settings>
  1013. <Setting>
  1014. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  1015. <Name>Epoch duration (in sec)</Name>
  1016. <DefaultValue>1</DefaultValue>
  1017. <Value>1</Value>
  1018. <Modifiability>false</Modifiability>
  1019. </Setting>
  1020. <Setting>
  1021. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  1022. <Name>Epoch intervals (in sec)</Name>
  1023. <DefaultValue>0.5</DefaultValue>
  1024. <Value>0.5</Value>
  1025. <Modifiability>false</Modifiability>
  1026. </Setting>
  1027. </Settings>
  1028. <Attributes>
  1029. <Attribute>
  1030. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1031. <Value>144</Value>
  1032. </Attribute>
  1033. <Attribute>
  1034. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1035. <Value>1024</Value>
  1036. </Attribute>
  1037. <Attribute>
  1038. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1039. <Value>(0xc5ff41e9, 0xccc59a01)</Value>
  1040. </Attribute>
  1041. <Attribute>
  1042. <Identifier>(0x8d21ff41, 0xdf6afe7e)</Identifier>
  1043. <Value>${__volatile_ScenarioDir}/configuration/time-based-epoching.cfg</Value>
  1044. </Attribute>
  1045. <Attribute>
  1046. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1047. <Value>1</Value>
  1048. </Attribute>
  1049. <Attribute>
  1050. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  1051. <Value>2</Value>
  1052. </Attribute>
  1053. <Attribute>
  1054. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  1055. <Value>1</Value>
  1056. </Attribute>
  1057. </Attributes>
  1058. </Box>
  1059. <Box>
  1060. <Identifier>(0x50eef0f8, 0x07c4a998)</Identifier>
  1061. <Name>Identity</Name>
  1062. <AlgorithmClassIdentifier>(0x5dffe431, 0x35215c50)</AlgorithmClassIdentifier>
  1063. <Inputs>
  1064. <Input>
  1065. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1066. <Name>Input stream 1</Name>
  1067. </Input>
  1068. <Input>
  1069. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  1070. <Name>Input stream 2</Name>
  1071. </Input>
  1072. </Inputs>
  1073. <Outputs>
  1074. <Output>
  1075. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1076. <Name>Output stream 1</Name>
  1077. </Output>
  1078. <Output>
  1079. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  1080. <Name>Output stream 2</Name>
  1081. </Output>
  1082. </Outputs>
  1083. <Attributes>
  1084. <Attribute>
  1085. <Identifier>(0x17ee7c08, 0x94c14893)</Identifier>
  1086. <Value></Value>
  1087. </Attribute>
  1088. <Attribute>
  1089. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1090. <Value>-304</Value>
  1091. </Attribute>
  1092. <Attribute>
  1093. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1094. <Value>864</Value>
  1095. </Attribute>
  1096. <Attribute>
  1097. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  1098. <Value></Value>
  1099. </Attribute>
  1100. <Attribute>
  1101. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1102. <Value>(0xa8ffe2a3, 0x27038f03)</Value>
  1103. </Attribute>
  1104. <Attribute>
  1105. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  1106. <Value></Value>
  1107. </Attribute>
  1108. <Attribute>
  1109. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1110. <Value>1</Value>
  1111. </Attribute>
  1112. <Attribute>
  1113. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  1114. <Value>1</Value>
  1115. </Attribute>
  1116. <Attribute>
  1117. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  1118. <Value></Value>
  1119. </Attribute>
  1120. </Attributes>
  1121. </Box>
  1122. <Box>
  1123. <Identifier>(0x56fbfd1a, 0x2c474c9e)</Identifier>
  1124. <Name>Classifier trainer</Name>
  1125. <AlgorithmClassIdentifier>(0xf3dae8a8, 0x3b444154)</AlgorithmClassIdentifier>
  1126. <Inputs>
  1127. <Input>
  1128. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  1129. <Name>Stimulations</Name>
  1130. </Input>
  1131. <Input>
  1132. <TypeIdentifier>(0x17341935, 0x152ff448)</TypeIdentifier>
  1133. <Name>Features for class 1</Name>
  1134. </Input>
  1135. <Input>
  1136. <TypeIdentifier>(0x17341935, 0x152ff448)</TypeIdentifier>
  1137. <Name>Features for class 2</Name>
  1138. </Input>
  1139. <Input>
  1140. <TypeIdentifier>(0x17341935, 0x152ff448)</TypeIdentifier>
  1141. <Name>Features for class 3</Name>
  1142. </Input>
  1143. </Inputs>
  1144. <Outputs>
  1145. <Output>
  1146. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  1147. <Name>Train-completed Flag</Name>
  1148. </Output>
  1149. </Outputs>
  1150. <Settings>
  1151. <Setting>
  1152. <TypeIdentifier>(0x2c132d6e, 0x44ab0d97)</TypeIdentifier>
  1153. <Name>Train trigger</Name>
  1154. <DefaultValue>OVTK_StimulationId_Train</DefaultValue>
  1155. <Value>OVTK_StimulationId_ExperimentStop</Value>
  1156. <Modifiability>false</Modifiability>
  1157. </Setting>
  1158. <Setting>
  1159. <TypeIdentifier>(0x330306dd, 0x74a95f98)</TypeIdentifier>
  1160. <Name>Filename to save configuration to</Name>
  1161. <DefaultValue>${Path_UserData}/my-classifier.xml</DefaultValue>
  1162. <Value>${__volatile_ScenarioDir}/classifiers/multiclass.xml</Value>
  1163. <Modifiability>false</Modifiability>
  1164. </Setting>
  1165. <Setting>
  1166. <TypeIdentifier>(0xbe9eba5c, 0xa8415d37)</TypeIdentifier>
  1167. <Name>Multiclass strategy to apply</Name>
  1168. <DefaultValue>Native</DefaultValue>
  1169. <Value>OneVsOne</Value>
  1170. <Modifiability>false</Modifiability>
  1171. </Setting>
  1172. <Setting>
  1173. <TypeIdentifier>(0x79146976, 0xd7f01a25)</TypeIdentifier>
  1174. <Name>Pairwise Decision Strategy</Name>
  1175. <DefaultValue>PKPD</DefaultValue>
  1176. <Value>Voting</Value>
  1177. <Modifiability>false</Modifiability>
  1178. </Setting>
  1179. <Setting>
  1180. <TypeIdentifier>(0x2c132d6e, 0x44ab0d97)</TypeIdentifier>
  1181. <Name>Class 1 label</Name>
  1182. <DefaultValue>OVTK_StimulationId_Label_01</DefaultValue>
  1183. <Value>OVTK_StimulationId_Label_01</Value>
  1184. <Modifiability>false</Modifiability>
  1185. </Setting>
  1186. <Setting>
  1187. <TypeIdentifier>(0x2c132d6e, 0x44ab0d97)</TypeIdentifier>
  1188. <Name>Class 2 label</Name>
  1189. <DefaultValue>OVTK_StimulationId_Label_02</DefaultValue>
  1190. <Value>OVTK_StimulationId_Label_02</Value>
  1191. <Modifiability>false</Modifiability>
  1192. </Setting>
  1193. <Setting>
  1194. <TypeIdentifier>(0x2c132d6e, 0x44ab0d97)</TypeIdentifier>
  1195. <Name>Class 3 label</Name>
  1196. <DefaultValue>OVTK_StimulationId_Label_03</DefaultValue>
  1197. <Value>OVTK_StimulationId_Label_03</Value>
  1198. <Modifiability>false</Modifiability>
  1199. </Setting>
  1200. <Setting>
  1201. <TypeIdentifier>(0xd765a736, 0xed708c65)</TypeIdentifier>
  1202. <Name>Algorithm to use</Name>
  1203. <DefaultValue>Linear Discrimimant Analysis (LDA)</DefaultValue>
  1204. <Value>Linear Discrimimant Analysis (LDA)</Value>
  1205. <Modifiability>false</Modifiability>
  1206. </Setting>
  1207. <Setting>
  1208. <TypeIdentifier>(0x2cdb2f0b, 0x12f231ea)</TypeIdentifier>
  1209. <Name>Use shrinkage</Name>
  1210. <DefaultValue>false</DefaultValue>
  1211. <Value>true</Value>
  1212. <Modifiability>false</Modifiability>
  1213. </Setting>
  1214. <Setting>
  1215. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  1216. <Name>Shrinkage coefficient (-1 == auto)</Name>
  1217. <DefaultValue>-1.000000</DefaultValue>
  1218. <Value>-1.000000</Value>
  1219. <Modifiability>false</Modifiability>
  1220. </Setting>
  1221. <Setting>
  1222. <TypeIdentifier>(0x2cdb2f0b, 0x12f231ea)</TypeIdentifier>
  1223. <Name>Shrinkage: Force diagonal cov (DDA)</Name>
  1224. <DefaultValue>false</DefaultValue>
  1225. <Value>false</Value>
  1226. <Modifiability>false</Modifiability>
  1227. </Setting>
  1228. <Setting>
  1229. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1230. <Name>Number of partitions for k-fold cross-validation test</Name>
  1231. <DefaultValue>10</DefaultValue>
  1232. <Value>10</Value>
  1233. <Modifiability>false</Modifiability>
  1234. </Setting>
  1235. <Setting>
  1236. <TypeIdentifier>(0x2cdb2f0b, 0x12f231ea)</TypeIdentifier>
  1237. <Name>Balance classes</Name>
  1238. <DefaultValue>false</DefaultValue>
  1239. <Value>false</Value>
  1240. <Modifiability>false</Modifiability>
  1241. </Setting>
  1242. </Settings>
  1243. <Attributes>
  1244. <Attribute>
  1245. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1246. <Value>800.000000</Value>
  1247. </Attribute>
  1248. <Attribute>
  1249. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1250. <Value>752.000000</Value>
  1251. </Attribute>
  1252. <Attribute>
  1253. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1254. <Value>(0x9de21779, 0x37776c89)</Value>
  1255. </Attribute>
  1256. <Attribute>
  1257. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  1258. <Value>(0x00000000, 0x082a348e)</Value>
  1259. </Attribute>
  1260. <Attribute>
  1261. <Identifier>(0xc73e83ec, 0xf855c5bc)</Identifier>
  1262. <Value>false</Value>
  1263. </Attribute>
  1264. <Attribute>
  1265. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1266. <Value>1</Value>
  1267. </Attribute>
  1268. <Attribute>
  1269. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  1270. <Value>5</Value>
  1271. </Attribute>
  1272. <Attribute>
  1273. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  1274. <Value>3</Value>
  1275. </Attribute>
  1276. <Attribute>
  1277. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  1278. <Value></Value>
  1279. </Attribute>
  1280. </Attributes>
  1281. </Box>
  1282. <Box>
  1283. <Identifier>(0x5b1d76cb, 0x6835d27c)</Identifier>
  1284. <Name>Frequency 1</Name>
  1285. <AlgorithmClassIdentifier>(0xb4f9d042, 0x9d79f2e5)</AlgorithmClassIdentifier>
  1286. <Inputs>
  1287. <Input>
  1288. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1289. <Name>Input signal</Name>
  1290. </Input>
  1291. </Inputs>
  1292. <Outputs>
  1293. <Output>
  1294. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1295. <Name>Filtered signal</Name>
  1296. </Output>
  1297. </Outputs>
  1298. <Settings>
  1299. <Setting>
  1300. <TypeIdentifier>(0x2f2c606c, 0x8512ed68)</TypeIdentifier>
  1301. <Name>Filter method</Name>
  1302. <DefaultValue>Butterworth</DefaultValue>
  1303. <Value>Butterworth</Value>
  1304. <Modifiability>false</Modifiability>
  1305. </Setting>
  1306. <Setting>
  1307. <TypeIdentifier>(0xfa20178e, 0x4cba62e9)</TypeIdentifier>
  1308. <Name>Filter type</Name>
  1309. <DefaultValue>Band pass</DefaultValue>
  1310. <Value>Band pass</Value>
  1311. <Modifiability>false</Modifiability>
  1312. </Setting>
  1313. <Setting>
  1314. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1315. <Name>Filter order</Name>
  1316. <DefaultValue>4</DefaultValue>
  1317. <Value>4</Value>
  1318. <Modifiability>false</Modifiability>
  1319. </Setting>
  1320. <Setting>
  1321. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  1322. <Name>Low cut frequency (Hz)</Name>
  1323. <DefaultValue>29</DefaultValue>
  1324. <Value>19.75</Value>
  1325. <Modifiability>false</Modifiability>
  1326. </Setting>
  1327. <Setting>
  1328. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  1329. <Name>High cut frequency (Hz)</Name>
  1330. <DefaultValue>40</DefaultValue>
  1331. <Value>20.25</Value>
  1332. <Modifiability>false</Modifiability>
  1333. </Setting>
  1334. <Setting>
  1335. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  1336. <Name>Pass band ripple (dB)</Name>
  1337. <DefaultValue>0.5</DefaultValue>
  1338. <Value>0.500000</Value>
  1339. <Modifiability>false</Modifiability>
  1340. </Setting>
  1341. </Settings>
  1342. <Attributes>
  1343. <Attribute>
  1344. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1345. <Value>0</Value>
  1346. </Attribute>
  1347. <Attribute>
  1348. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1349. <Value>576</Value>
  1350. </Attribute>
  1351. <Attribute>
  1352. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1353. <Value>(0x27a4ceec, 0x876d6384)</Value>
  1354. </Attribute>
  1355. <Attribute>
  1356. <Identifier>(0x8d21ff41, 0xdf6afe7e)</Identifier>
  1357. <Value>${__volatile_ScenarioDir}/configuration/temporal-filter-freq-1.cfg</Value>
  1358. </Attribute>
  1359. <Attribute>
  1360. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  1361. <Value>(0x00000000, 0x02babeb3)</Value>
  1362. </Attribute>
  1363. <Attribute>
  1364. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1365. <Value>1</Value>
  1366. </Attribute>
  1367. <Attribute>
  1368. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  1369. <Value>6</Value>
  1370. </Attribute>
  1371. <Attribute>
  1372. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  1373. <Value>1</Value>
  1374. </Attribute>
  1375. </Attributes>
  1376. </Box>
  1377. <Box>
  1378. <Identifier>(0x617e3b04, 0x389397c3)</Identifier>
  1379. <Name>Frequency 2</Name>
  1380. <AlgorithmClassIdentifier>(0xb4f9d042, 0x9d79f2e5)</AlgorithmClassIdentifier>
  1381. <Inputs>
  1382. <Input>
  1383. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1384. <Name>Input signal</Name>
  1385. </Input>
  1386. </Inputs>
  1387. <Outputs>
  1388. <Output>
  1389. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1390. <Name>Filtered signal</Name>
  1391. </Output>
  1392. </Outputs>
  1393. <Settings>
  1394. <Setting>
  1395. <TypeIdentifier>(0x2f2c606c, 0x8512ed68)</TypeIdentifier>
  1396. <Name>Filter method</Name>
  1397. <DefaultValue>Butterworth</DefaultValue>
  1398. <Value>Butterworth</Value>
  1399. <Modifiability>false</Modifiability>
  1400. </Setting>
  1401. <Setting>
  1402. <TypeIdentifier>(0xfa20178e, 0x4cba62e9)</TypeIdentifier>
  1403. <Name>Filter type</Name>
  1404. <DefaultValue>Band pass</DefaultValue>
  1405. <Value>Band pass</Value>
  1406. <Modifiability>false</Modifiability>
  1407. </Setting>
  1408. <Setting>
  1409. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1410. <Name>Filter order</Name>
  1411. <DefaultValue>4</DefaultValue>
  1412. <Value>4</Value>
  1413. <Modifiability>false</Modifiability>
  1414. </Setting>
  1415. <Setting>
  1416. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  1417. <Name>Low cut frequency (Hz)</Name>
  1418. <DefaultValue>29</DefaultValue>
  1419. <Value>11.75</Value>
  1420. <Modifiability>false</Modifiability>
  1421. </Setting>
  1422. <Setting>
  1423. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  1424. <Name>High cut frequency (Hz)</Name>
  1425. <DefaultValue>40</DefaultValue>
  1426. <Value>12.25</Value>
  1427. <Modifiability>false</Modifiability>
  1428. </Setting>
  1429. <Setting>
  1430. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  1431. <Name>Pass band ripple (dB)</Name>
  1432. <DefaultValue>0.5</DefaultValue>
  1433. <Value>0.500000</Value>
  1434. <Modifiability>false</Modifiability>
  1435. </Setting>
  1436. </Settings>
  1437. <Attributes>
  1438. <Attribute>
  1439. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1440. <Value>-16</Value>
  1441. </Attribute>
  1442. <Attribute>
  1443. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1444. <Value>1040</Value>
  1445. </Attribute>
  1446. <Attribute>
  1447. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1448. <Value>(0x27a4ceec, 0x876d6384)</Value>
  1449. </Attribute>
  1450. <Attribute>
  1451. <Identifier>(0x8d21ff41, 0xdf6afe7e)</Identifier>
  1452. <Value>${__volatile_ScenarioDir}/configuration/temporal-filter-freq-3.cfg</Value>
  1453. </Attribute>
  1454. <Attribute>
  1455. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  1456. <Value>(0x00000000, 0x02bf65dd)</Value>
  1457. </Attribute>
  1458. <Attribute>
  1459. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1460. <Value>1</Value>
  1461. </Attribute>
  1462. <Attribute>
  1463. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  1464. <Value>6</Value>
  1465. </Attribute>
  1466. <Attribute>
  1467. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  1468. <Value>1</Value>
  1469. </Attribute>
  1470. </Attributes>
  1471. </Box>
  1472. <Box>
  1473. <Identifier>(0x6292a294, 0x629905c2)</Identifier>
  1474. <Name>Target Separator</Name>
  1475. <AlgorithmClassIdentifier>(0x0b5a2787, 0x02750621)</AlgorithmClassIdentifier>
  1476. <Inputs>
  1477. <Input>
  1478. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  1479. <Name>New input</Name>
  1480. </Input>
  1481. </Inputs>
  1482. <Outputs>
  1483. <Output>
  1484. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  1485. <Name>Stimulations</Name>
  1486. </Output>
  1487. <Output>
  1488. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  1489. <Name>New output</Name>
  1490. </Output>
  1491. </Outputs>
  1492. <Settings>
  1493. <Setting>
  1494. <TypeIdentifier>(0xb0d0db45, 0x49cbc34a)</TypeIdentifier>
  1495. <Name>Lua Script</Name>
  1496. <DefaultValue></DefaultValue>
  1497. <Value>${__volatile_ScenarioDir}/scripts/classifier-training-target-separator.lua</Value>
  1498. <Modifiability>false</Modifiability>
  1499. </Setting>
  1500. <Setting>
  1501. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  1502. <Name>Targets</Name>
  1503. <DefaultValue></DefaultValue>
  1504. <Value>0 1 2 3</Value>
  1505. <Modifiability>false</Modifiability>
  1506. </Setting>
  1507. <Setting>
  1508. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  1509. <Name>Non Targets</Name>
  1510. <DefaultValue></DefaultValue>
  1511. <Value>4</Value>
  1512. <Modifiability>false</Modifiability>
  1513. </Setting>
  1514. <Setting>
  1515. <TypeIdentifier>(0x2c132d6e, 0x44ab0d97)</TypeIdentifier>
  1516. <Name>Output Stimulation</Name>
  1517. <DefaultValue>OVTK_StimulationId_Target</DefaultValue>
  1518. <Value>OVTK_StimulationId_Target</Value>
  1519. <Modifiability>false</Modifiability>
  1520. </Setting>
  1521. </Settings>
  1522. <Attributes>
  1523. <Attribute>
  1524. <Identifier>(0x17ee7c08, 0x94c14893)</Identifier>
  1525. <Value></Value>
  1526. </Attribute>
  1527. <Attribute>
  1528. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1529. <Value>-192</Value>
  1530. </Attribute>
  1531. <Attribute>
  1532. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1533. <Value>1040</Value>
  1534. </Attribute>
  1535. <Attribute>
  1536. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1537. <Value>(0xd6e3f48b, 0xbee3523a)</Value>
  1538. </Attribute>
  1539. <Attribute>
  1540. <Identifier>(0x61d11811, 0x71e65362)</Identifier>
  1541. <Value></Value>
  1542. </Attribute>
  1543. <Attribute>
  1544. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  1545. <Value>(0x00000000, 0x0ea3ceab)</Value>
  1546. </Attribute>
  1547. <Attribute>
  1548. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1549. <Value>1</Value>
  1550. </Attribute>
  1551. <Attribute>
  1552. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  1553. <Value>1</Value>
  1554. </Attribute>
  1555. <Attribute>
  1556. <Identifier>(0xf191c1c8, 0xa0123976)</Identifier>
  1557. <Value></Value>
  1558. </Attribute>
  1559. <Attribute>
  1560. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  1561. <Value></Value>
  1562. </Attribute>
  1563. </Attributes>
  1564. </Box>
  1565. <Box>
  1566. <Identifier>(0x68c7947c, 0x0be24bfd)</Identifier>
  1567. <Name>Stream Switch</Name>
  1568. <AlgorithmClassIdentifier>(0x556a2c32, 0x61df49fc)</AlgorithmClassIdentifier>
  1569. <Inputs>
  1570. <Input>
  1571. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  1572. <Name>Triggers</Name>
  1573. </Input>
  1574. <Input>
  1575. <TypeIdentifier>(0x17341935, 0x152ff448)</TypeIdentifier>
  1576. <Name>Matrix</Name>
  1577. </Input>
  1578. </Inputs>
  1579. <Outputs>
  1580. <Output>
  1581. <TypeIdentifier>(0x17341935, 0x152ff448)</TypeIdentifier>
  1582. <Name>Output</Name>
  1583. </Output>
  1584. <Output>
  1585. <TypeIdentifier>(0x17341935, 0x152ff448)</TypeIdentifier>
  1586. <Name>Output</Name>
  1587. </Output>
  1588. <Output>
  1589. <TypeIdentifier>(0x17341935, 0x152ff448)</TypeIdentifier>
  1590. <Name>New output</Name>
  1591. </Output>
  1592. <Output>
  1593. <TypeIdentifier>(0x17341935, 0x152ff448)</TypeIdentifier>
  1594. <Name>New output</Name>
  1595. </Output>
  1596. </Outputs>
  1597. <Settings>
  1598. <Setting>
  1599. <TypeIdentifier>(0x2cdb2f0b, 0x12f231ea)</TypeIdentifier>
  1600. <Name>Default to output 1</Name>
  1601. <DefaultValue>false</DefaultValue>
  1602. <Value>false</Value>
  1603. <Modifiability>false</Modifiability>
  1604. </Setting>
  1605. <Setting>
  1606. <TypeIdentifier>(0x2c132d6e, 0x44ab0d97)</TypeIdentifier>
  1607. <Name>Switch stim for output 1</Name>
  1608. <DefaultValue>OVTK_StimulationId_Label_00</DefaultValue>
  1609. <Value>OVTK_StimulationId_Label_00</Value>
  1610. <Modifiability>false</Modifiability>
  1611. </Setting>
  1612. <Setting>
  1613. <TypeIdentifier>(0x2c132d6e, 0x44ab0d97)</TypeIdentifier>
  1614. <Name>Switch stim for output 2</Name>
  1615. <DefaultValue>OVTK_StimulationId_Label_01</DefaultValue>
  1616. <Value>OVTK_StimulationId_Label_01</Value>
  1617. <Modifiability>false</Modifiability>
  1618. </Setting>
  1619. <Setting>
  1620. <TypeIdentifier>(0x2c132d6e, 0x44ab0d97)</TypeIdentifier>
  1621. <Name>Switch stim for output 3</Name>
  1622. <DefaultValue>OVTK_StimulationId_Label_00</DefaultValue>
  1623. <Value>OVTK_StimulationId_Label_02</Value>
  1624. <Modifiability>false</Modifiability>
  1625. </Setting>
  1626. <Setting>
  1627. <TypeIdentifier>(0x2c132d6e, 0x44ab0d97)</TypeIdentifier>
  1628. <Name>Switch stim for output 4</Name>
  1629. <DefaultValue>OVTK_StimulationId_Label_00</DefaultValue>
  1630. <Value>OVTK_StimulationId_Label_03</Value>
  1631. <Modifiability>false</Modifiability>
  1632. </Setting>
  1633. </Settings>
  1634. <Attributes>
  1635. <Attribute>
  1636. <Identifier>(0x17ee7c08, 0x94c14893)</Identifier>
  1637. <Value></Value>
  1638. </Attribute>
  1639. <Attribute>
  1640. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1641. <Value>720</Value>
  1642. </Attribute>
  1643. <Attribute>
  1644. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1645. <Value>768</Value>
  1646. </Attribute>
  1647. <Attribute>
  1648. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1649. <Value>(0x545d0657, 0x3d7c83bd)</Value>
  1650. </Attribute>
  1651. <Attribute>
  1652. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  1653. <Value></Value>
  1654. </Attribute>
  1655. <Attribute>
  1656. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  1657. <Value>(0x00000000, 0x05ab8e92)</Value>
  1658. </Attribute>
  1659. <Attribute>
  1660. <Identifier>(0xc73e83ec, 0xf855c5bc)</Identifier>
  1661. <Value>false</Value>
  1662. </Attribute>
  1663. <Attribute>
  1664. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1665. <Value>2</Value>
  1666. </Attribute>
  1667. <Attribute>
  1668. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  1669. <Value>3</Value>
  1670. </Attribute>
  1671. <Attribute>
  1672. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  1673. <Value>2</Value>
  1674. </Attribute>
  1675. </Attributes>
  1676. </Box>
  1677. <Box>
  1678. <Identifier>(0x6a466752, 0x377577fa)</Identifier>
  1679. <Name>DSP</Name>
  1680. <AlgorithmClassIdentifier>(0x00e26fa1, 0x1dbab1b2)</AlgorithmClassIdentifier>
  1681. <Inputs>
  1682. <Input>
  1683. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1684. <Name>Input - A</Name>
  1685. </Input>
  1686. </Inputs>
  1687. <Outputs>
  1688. <Output>
  1689. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1690. <Name>Output</Name>
  1691. </Output>
  1692. </Outputs>
  1693. <Settings>
  1694. <Setting>
  1695. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  1696. <Name>Equation</Name>
  1697. <DefaultValue>x</DefaultValue>
  1698. <Value>x*x</Value>
  1699. <Modifiability>false</Modifiability>
  1700. </Setting>
  1701. </Settings>
  1702. <Attributes>
  1703. <Attribute>
  1704. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1705. <Value>224</Value>
  1706. </Attribute>
  1707. <Attribute>
  1708. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1709. <Value>816</Value>
  1710. </Attribute>
  1711. <Attribute>
  1712. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  1713. <Value></Value>
  1714. </Attribute>
  1715. <Attribute>
  1716. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1717. <Value>(0x21889dc4, 0x1126497e)</Value>
  1718. </Attribute>
  1719. <Attribute>
  1720. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  1721. <Value></Value>
  1722. </Attribute>
  1723. <Attribute>
  1724. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  1725. <Value>(0x00000000, 0x00b1897c)</Value>
  1726. </Attribute>
  1727. <Attribute>
  1728. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1729. <Value>1</Value>
  1730. </Attribute>
  1731. <Attribute>
  1732. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  1733. <Value>1</Value>
  1734. </Attribute>
  1735. <Attribute>
  1736. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  1737. <Value>1</Value>
  1738. </Attribute>
  1739. <Attribute>
  1740. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  1741. <Value></Value>
  1742. </Attribute>
  1743. </Attributes>
  1744. </Box>
  1745. <Box>
  1746. <Identifier>(0x72a5f195, 0x5ef1cbbb)</Identifier>
  1747. <Name>Feature aggregator</Name>
  1748. <AlgorithmClassIdentifier>(0x00682417, 0x453635f9)</AlgorithmClassIdentifier>
  1749. <Inputs>
  1750. <Input>
  1751. <TypeIdentifier>(0x544a003e, 0x6dcba5f6)</TypeIdentifier>
  1752. <Name>Input stream 1</Name>
  1753. </Input>
  1754. <Input>
  1755. <TypeIdentifier>(0x544a003e, 0x6dcba5f6)</TypeIdentifier>
  1756. <Name>Input stream 2</Name>
  1757. </Input>
  1758. <Input>
  1759. <TypeIdentifier>(0x544a003e, 0x6dcba5f6)</TypeIdentifier>
  1760. <Name>Input stream 3</Name>
  1761. </Input>
  1762. </Inputs>
  1763. <Outputs>
  1764. <Output>
  1765. <TypeIdentifier>(0x17341935, 0x152ff448)</TypeIdentifier>
  1766. <Name>Feature vector stream</Name>
  1767. </Output>
  1768. </Outputs>
  1769. <Attributes>
  1770. <Attribute>
  1771. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1772. <Value>496</Value>
  1773. </Attribute>
  1774. <Attribute>
  1775. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1776. <Value>816</Value>
  1777. </Attribute>
  1778. <Attribute>
  1779. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1780. <Value>(0xb5d15cc9, 0x6c8c28fb)</Value>
  1781. </Attribute>
  1782. <Attribute>
  1783. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  1784. <Value>(0x00000000, 0x00d82340)</Value>
  1785. </Attribute>
  1786. <Attribute>
  1787. <Identifier>(0xc73e83ec, 0xf855c5bc)</Identifier>
  1788. <Value>false</Value>
  1789. </Attribute>
  1790. <Attribute>
  1791. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1792. <Value>1</Value>
  1793. </Attribute>
  1794. <Attribute>
  1795. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  1796. <Value>1</Value>
  1797. </Attribute>
  1798. <Attribute>
  1799. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  1800. <Value></Value>
  1801. </Attribute>
  1802. </Attributes>
  1803. </Box>
  1804. <Box>
  1805. <Identifier>(0x77b12090, 0x54b29ceb)</Identifier>
  1806. <Name>Frequency 2</Name>
  1807. <AlgorithmClassIdentifier>(0xb4f9d042, 0x9d79f2e5)</AlgorithmClassIdentifier>
  1808. <Inputs>
  1809. <Input>
  1810. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1811. <Name>Input signal</Name>
  1812. </Input>
  1813. </Inputs>
  1814. <Outputs>
  1815. <Output>
  1816. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1817. <Name>Filtered signal</Name>
  1818. </Output>
  1819. </Outputs>
  1820. <Settings>
  1821. <Setting>
  1822. <TypeIdentifier>(0x2f2c606c, 0x8512ed68)</TypeIdentifier>
  1823. <Name>Filter method</Name>
  1824. <DefaultValue>Butterworth</DefaultValue>
  1825. <Value>Butterworth</Value>
  1826. <Modifiability>false</Modifiability>
  1827. </Setting>
  1828. <Setting>
  1829. <TypeIdentifier>(0xfa20178e, 0x4cba62e9)</TypeIdentifier>
  1830. <Name>Filter type</Name>
  1831. <DefaultValue>Band pass</DefaultValue>
  1832. <Value>Band pass</Value>
  1833. <Modifiability>false</Modifiability>
  1834. </Setting>
  1835. <Setting>
  1836. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1837. <Name>Filter order</Name>
  1838. <DefaultValue>4</DefaultValue>
  1839. <Value>4</Value>
  1840. <Modifiability>false</Modifiability>
  1841. </Setting>
  1842. <Setting>
  1843. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  1844. <Name>Low cut frequency (Hz)</Name>
  1845. <DefaultValue>29</DefaultValue>
  1846. <Value>14.75</Value>
  1847. <Modifiability>false</Modifiability>
  1848. </Setting>
  1849. <Setting>
  1850. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  1851. <Name>High cut frequency (Hz)</Name>
  1852. <DefaultValue>40</DefaultValue>
  1853. <Value>15.25</Value>
  1854. <Modifiability>false</Modifiability>
  1855. </Setting>
  1856. <Setting>
  1857. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  1858. <Name>Pass band ripple (dB)</Name>
  1859. <DefaultValue>0.5</DefaultValue>
  1860. <Value>0.500000</Value>
  1861. <Modifiability>false</Modifiability>
  1862. </Setting>
  1863. </Settings>
  1864. <Attributes>
  1865. <Attribute>
  1866. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1867. <Value>-16</Value>
  1868. </Attribute>
  1869. <Attribute>
  1870. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1871. <Value>816</Value>
  1872. </Attribute>
  1873. <Attribute>
  1874. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1875. <Value>(0x27a4ceec, 0x876d6384)</Value>
  1876. </Attribute>
  1877. <Attribute>
  1878. <Identifier>(0x8d21ff41, 0xdf6afe7e)</Identifier>
  1879. <Value>${__volatile_ScenarioDir}/configuration/temporal-filter-freq-2.cfg</Value>
  1880. </Attribute>
  1881. <Attribute>
  1882. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  1883. <Value>(0x00000000, 0x02a4db23)</Value>
  1884. </Attribute>
  1885. <Attribute>
  1886. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1887. <Value>1</Value>
  1888. </Attribute>
  1889. <Attribute>
  1890. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  1891. <Value>6</Value>
  1892. </Attribute>
  1893. <Attribute>
  1894. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  1895. <Value>1</Value>
  1896. </Attribute>
  1897. </Attributes>
  1898. </Box>
  1899. </Boxes>
  1900. <Links>
  1901. <Link>
  1902. <Identifier>(0x002085f0, 0x093d76aa)</Identifier>
  1903. <Source>
  1904. <BoxIdentifier>(0x50eef0f8, 0x07c4a998)</BoxIdentifier>
  1905. <BoxOutputIndex>1</BoxOutputIndex>
  1906. </Source>
  1907. <Target>
  1908. <BoxIdentifier>(0x6292a294, 0x629905c2)</BoxIdentifier>
  1909. <BoxInputIndex>0</BoxInputIndex>
  1910. </Target>
  1911. </Link>
  1912. <Link>
  1913. <Identifier>(0x04329ceb, 0x2cf6df50)</Identifier>
  1914. <Source>
  1915. <BoxIdentifier>(0x4f494c33, 0x2f8af0f0)</BoxIdentifier>
  1916. <BoxOutputIndex>0</BoxOutputIndex>
  1917. </Source>
  1918. <Target>
  1919. <BoxIdentifier>(0x3a95d3c2, 0x6a571226)</BoxIdentifier>
  1920. <BoxInputIndex>0</BoxInputIndex>
  1921. </Target>
  1922. </Link>
  1923. <Link>
  1924. <Identifier>(0x04425bf5, 0x3335d8a7)</Identifier>
  1925. <Source>
  1926. <BoxIdentifier>(0x68c7947c, 0x0be24bfd)</BoxIdentifier>
  1927. <BoxOutputIndex>3</BoxOutputIndex>
  1928. </Source>
  1929. <Target>
  1930. <BoxIdentifier>(0x56fbfd1a, 0x2c474c9e)</BoxIdentifier>
  1931. <BoxInputIndex>3</BoxInputIndex>
  1932. </Target>
  1933. </Link>
  1934. <Link>
  1935. <Identifier>(0x06905dfd, 0x0a12e4a2)</Identifier>
  1936. <Source>
  1937. <BoxIdentifier>(0x50eef0f8, 0x07c4a998)</BoxIdentifier>
  1938. <BoxOutputIndex>1</BoxOutputIndex>
  1939. </Source>
  1940. <Target>
  1941. <BoxIdentifier>(0x56fbfd1a, 0x2c474c9e)</BoxIdentifier>
  1942. <BoxInputIndex>0</BoxInputIndex>
  1943. </Target>
  1944. </Link>
  1945. <Link>
  1946. <Identifier>(0x093ee378, 0x0cc15dc1)</Identifier>
  1947. <Source>
  1948. <BoxIdentifier>(0x08ab469c, 0x10c9257e)</BoxIdentifier>
  1949. <BoxOutputIndex>1</BoxOutputIndex>
  1950. </Source>
  1951. <Target>
  1952. <BoxIdentifier>(0x68c7947c, 0x0be24bfd)</BoxIdentifier>
  1953. <BoxInputIndex>1</BoxInputIndex>
  1954. </Target>
  1955. </Link>
  1956. <Link>
  1957. <Identifier>(0x0a82bc9b, 0x3c86bcb2)</Identifier>
  1958. <Source>
  1959. <BoxIdentifier>(0x03dba115, 0x4c1f8a3a)</BoxIdentifier>
  1960. <BoxOutputIndex>2</BoxOutputIndex>
  1961. </Source>
  1962. <Target>
  1963. <BoxIdentifier>(0x50eef0f8, 0x07c4a998)</BoxIdentifier>
  1964. <BoxInputIndex>1</BoxInputIndex>
  1965. </Target>
  1966. </Link>
  1967. <Link>
  1968. <Identifier>(0x0be130d9, 0x31dafc5b)</Identifier>
  1969. <Source>
  1970. <BoxIdentifier>(0x6292a294, 0x629905c2)</BoxIdentifier>
  1971. <BoxOutputIndex>0</BoxOutputIndex>
  1972. </Source>
  1973. <Target>
  1974. <BoxIdentifier>(0x2655c041, 0x15f4a40e)</BoxIdentifier>
  1975. <BoxInputIndex>1</BoxInputIndex>
  1976. </Target>
  1977. </Link>
  1978. <Link>
  1979. <Identifier>(0x0c87fc45, 0x0d5aebd7)</Identifier>
  1980. <Source>
  1981. <BoxIdentifier>(0x6292a294, 0x629905c2)</BoxIdentifier>
  1982. <BoxOutputIndex>0</BoxOutputIndex>
  1983. </Source>
  1984. <Target>
  1985. <BoxIdentifier>(0x2655c041, 0x15f4a40c)</BoxIdentifier>
  1986. <BoxInputIndex>1</BoxInputIndex>
  1987. </Target>
  1988. </Link>
  1989. <Link>
  1990. <Identifier>(0x0fde6938, 0x073faacc)</Identifier>
  1991. <Source>
  1992. <BoxIdentifier>(0x4f494c33, 0x2f8af0f2)</BoxIdentifier>
  1993. <BoxOutputIndex>0</BoxOutputIndex>
  1994. </Source>
  1995. <Target>
  1996. <BoxIdentifier>(0x415522f9, 0x54a34c1d)</BoxIdentifier>
  1997. <BoxInputIndex>0</BoxInputIndex>
  1998. </Target>
  1999. </Link>
  2000. <Link>
  2001. <Identifier>(0x108f620a, 0x42852322)</Identifier>
  2002. <Source>
  2003. <BoxIdentifier>(0x415522f9, 0x54a34c1d)</BoxIdentifier>
  2004. <BoxOutputIndex>0</BoxOutputIndex>
  2005. </Source>
  2006. <Target>
  2007. <BoxIdentifier>(0x1300340f, 0x7c5de533)</BoxIdentifier>
  2008. <BoxInputIndex>0</BoxInputIndex>
  2009. </Target>
  2010. </Link>
  2011. <Link>
  2012. <Identifier>(0x1118727e, 0x6f863744)</Identifier>
  2013. <Source>
  2014. <BoxIdentifier>(0x50eef0f8, 0x07c4a998)</BoxIdentifier>
  2015. <BoxOutputIndex>0</BoxOutputIndex>
  2016. </Source>
  2017. <Target>
  2018. <BoxIdentifier>(0x617e3b04, 0x389397c3)</BoxIdentifier>
  2019. <BoxInputIndex>0</BoxInputIndex>
  2020. </Target>
  2021. </Link>
  2022. <Link>
  2023. <Identifier>(0x193c114b, 0x342ed15a)</Identifier>
  2024. <Source>
  2025. <BoxIdentifier>(0x77b12090, 0x54b29ceb)</BoxIdentifier>
  2026. <BoxOutputIndex>0</BoxOutputIndex>
  2027. </Source>
  2028. <Target>
  2029. <BoxIdentifier>(0x2655c041, 0x15f4a40d)</BoxIdentifier>
  2030. <BoxInputIndex>0</BoxInputIndex>
  2031. </Target>
  2032. </Link>
  2033. <Link>
  2034. <Identifier>(0x1c461535, 0x7875bdfc)</Identifier>
  2035. <Source>
  2036. <BoxIdentifier>(0x08ab469c, 0x10c9257e)</BoxIdentifier>
  2037. <BoxOutputIndex>0</BoxOutputIndex>
  2038. </Source>
  2039. <Target>
  2040. <BoxIdentifier>(0x68c7947c, 0x0be24bfd)</BoxIdentifier>
  2041. <BoxInputIndex>0</BoxInputIndex>
  2042. </Target>
  2043. </Link>
  2044. <Link>
  2045. <Identifier>(0x1cb1dca9, 0x2a29b454)</Identifier>
  2046. <Source>
  2047. <BoxIdentifier>(0x50eef0f8, 0x07c4a998)</BoxIdentifier>
  2048. <BoxOutputIndex>1</BoxOutputIndex>
  2049. </Source>
  2050. <Target>
  2051. <BoxIdentifier>(0x08ab469c, 0x10c9257e)</BoxIdentifier>
  2052. <BoxInputIndex>0</BoxInputIndex>
  2053. </Target>
  2054. </Link>
  2055. <Link>
  2056. <Identifier>(0x325f4e16, 0x625e47f2)</Identifier>
  2057. <Source>
  2058. <BoxIdentifier>(0x5b1d76cb, 0x6835d27c)</BoxIdentifier>
  2059. <BoxOutputIndex>0</BoxOutputIndex>
  2060. </Source>
  2061. <Target>
  2062. <BoxIdentifier>(0x2655c041, 0x15f4a40c)</BoxIdentifier>
  2063. <BoxInputIndex>0</BoxInputIndex>
  2064. </Target>
  2065. </Link>
  2066. <Link>
  2067. <Identifier>(0x3462baac, 0x38e87e3d)</Identifier>
  2068. <Source>
  2069. <BoxIdentifier>(0x219be4a9, 0x6e609516)</BoxIdentifier>
  2070. <BoxOutputIndex>0</BoxOutputIndex>
  2071. </Source>
  2072. <Target>
  2073. <BoxIdentifier>(0x27849ab5, 0x2467a8be)</BoxIdentifier>
  2074. <BoxInputIndex>0</BoxInputIndex>
  2075. </Target>
  2076. </Link>
  2077. <Link>
  2078. <Identifier>(0x36027112, 0x64a902ec)</Identifier>
  2079. <Source>
  2080. <BoxIdentifier>(0x27849ab5, 0x2467a8be)</BoxIdentifier>
  2081. <BoxOutputIndex>0</BoxOutputIndex>
  2082. </Source>
  2083. <Target>
  2084. <BoxIdentifier>(0x72a5f195, 0x5ef1cbbb)</BoxIdentifier>
  2085. <BoxInputIndex>0</BoxInputIndex>
  2086. </Target>
  2087. </Link>
  2088. <Link>
  2089. <Identifier>(0x387c2225, 0x40ad5a27)</Identifier>
  2090. <Source>
  2091. <BoxIdentifier>(0x2655c041, 0x15f4a40d)</BoxIdentifier>
  2092. <BoxOutputIndex>0</BoxOutputIndex>
  2093. </Source>
  2094. <Target>
  2095. <BoxIdentifier>(0x4f494c33, 0x2f8af0f1)</BoxIdentifier>
  2096. <BoxInputIndex>0</BoxInputIndex>
  2097. </Target>
  2098. </Link>
  2099. <Link>
  2100. <Identifier>(0x3b7312f4, 0x77397f87)</Identifier>
  2101. <Source>
  2102. <BoxIdentifier>(0x6a466752, 0x377577fa)</BoxIdentifier>
  2103. <BoxOutputIndex>0</BoxOutputIndex>
  2104. </Source>
  2105. <Target>
  2106. <BoxIdentifier>(0x4b0bfe3e, 0x2c3a7e5c)</BoxIdentifier>
  2107. <BoxInputIndex>0</BoxInputIndex>
  2108. </Target>
  2109. </Link>
  2110. <Link>
  2111. <Identifier>(0x3ca3abc4, 0x0a806458)</Identifier>
  2112. <Source>
  2113. <BoxIdentifier>(0x4b0bfe3e, 0x2c3a7e5c)</BoxIdentifier>
  2114. <BoxOutputIndex>0</BoxOutputIndex>
  2115. </Source>
  2116. <Target>
  2117. <BoxIdentifier>(0x348c88da, 0x652055d3)</BoxIdentifier>
  2118. <BoxInputIndex>0</BoxInputIndex>
  2119. </Target>
  2120. </Link>
  2121. <Link>
  2122. <Identifier>(0x3e008c71, 0x0cd9cd75)</Identifier>
  2123. <Source>
  2124. <BoxIdentifier>(0x4f494c33, 0x2f8af0f1)</BoxIdentifier>
  2125. <BoxOutputIndex>0</BoxOutputIndex>
  2126. </Source>
  2127. <Target>
  2128. <BoxIdentifier>(0x6a466752, 0x377577fa)</BoxIdentifier>
  2129. <BoxInputIndex>0</BoxInputIndex>
  2130. </Target>
  2131. </Link>
  2132. <Link>
  2133. <Identifier>(0x3f26a677, 0x2c5938b4)</Identifier>
  2134. <Source>
  2135. <BoxIdentifier>(0x50eef0f8, 0x07c4a998)</BoxIdentifier>
  2136. <BoxOutputIndex>0</BoxOutputIndex>
  2137. </Source>
  2138. <Target>
  2139. <BoxIdentifier>(0x5b1d76cb, 0x6835d27c)</BoxIdentifier>
  2140. <BoxInputIndex>0</BoxInputIndex>
  2141. </Target>
  2142. </Link>
  2143. <Link>
  2144. <Identifier>(0x40d7538e, 0x517635f8)</Identifier>
  2145. <Source>
  2146. <BoxIdentifier>(0x6292a294, 0x629905c2)</BoxIdentifier>
  2147. <BoxOutputIndex>0</BoxOutputIndex>
  2148. </Source>
  2149. <Target>
  2150. <BoxIdentifier>(0x2655c041, 0x15f4a40d)</BoxIdentifier>
  2151. <BoxInputIndex>1</BoxInputIndex>
  2152. </Target>
  2153. </Link>
  2154. <Link>
  2155. <Identifier>(0x42167938, 0x4902a522)</Identifier>
  2156. <Source>
  2157. <BoxIdentifier>(0x0e30ed60, 0x478cbcea)</BoxIdentifier>
  2158. <BoxOutputIndex>0</BoxOutputIndex>
  2159. </Source>
  2160. <Target>
  2161. <BoxIdentifier>(0x72a5f195, 0x5ef1cbbb)</BoxIdentifier>
  2162. <BoxInputIndex>2</BoxInputIndex>
  2163. </Target>
  2164. </Link>
  2165. <Link>
  2166. <Identifier>(0x4aa9c16f, 0x348ddb0e)</Identifier>
  2167. <Source>
  2168. <BoxIdentifier>(0x2655c041, 0x15f4a40c)</BoxIdentifier>
  2169. <BoxOutputIndex>0</BoxOutputIndex>
  2170. </Source>
  2171. <Target>
  2172. <BoxIdentifier>(0x4f494c33, 0x2f8af0f0)</BoxIdentifier>
  2173. <BoxInputIndex>0</BoxInputIndex>
  2174. </Target>
  2175. </Link>
  2176. <Link>
  2177. <Identifier>(0x4cf017e6, 0x6f427a81)</Identifier>
  2178. <Source>
  2179. <BoxIdentifier>(0x3a95d3c2, 0x6a571226)</BoxIdentifier>
  2180. <BoxOutputIndex>0</BoxOutputIndex>
  2181. </Source>
  2182. <Target>
  2183. <BoxIdentifier>(0x219be4a9, 0x6e609516)</BoxIdentifier>
  2184. <BoxInputIndex>0</BoxInputIndex>
  2185. </Target>
  2186. </Link>
  2187. <Link>
  2188. <Identifier>(0x54945c07, 0x687a21d8)</Identifier>
  2189. <Source>
  2190. <BoxIdentifier>(0x617e3b04, 0x389397c3)</BoxIdentifier>
  2191. <BoxOutputIndex>0</BoxOutputIndex>
  2192. </Source>
  2193. <Target>
  2194. <BoxIdentifier>(0x2655c041, 0x15f4a40e)</BoxIdentifier>
  2195. <BoxInputIndex>0</BoxInputIndex>
  2196. </Target>
  2197. </Link>
  2198. <Link>
  2199. <Identifier>(0x55200f87, 0x00b3c658)</Identifier>
  2200. <Source>
  2201. <BoxIdentifier>(0x68c7947c, 0x0be24bfd)</BoxIdentifier>
  2202. <BoxOutputIndex>2</BoxOutputIndex>
  2203. </Source>
  2204. <Target>
  2205. <BoxIdentifier>(0x56fbfd1a, 0x2c474c9e)</BoxIdentifier>
  2206. <BoxInputIndex>2</BoxInputIndex>
  2207. </Target>
  2208. </Link>
  2209. <Link>
  2210. <Identifier>(0x584f1915, 0x72e8000a)</Identifier>
  2211. <Source>
  2212. <BoxIdentifier>(0x2655c041, 0x15f4a40e)</BoxIdentifier>
  2213. <BoxOutputIndex>0</BoxOutputIndex>
  2214. </Source>
  2215. <Target>
  2216. <BoxIdentifier>(0x4f494c33, 0x2f8af0f2)</BoxIdentifier>
  2217. <BoxInputIndex>0</BoxInputIndex>
  2218. </Target>
  2219. </Link>
  2220. <Link>
  2221. <Identifier>(0x5d5f0c4c, 0x0e749b92)</Identifier>
  2222. <Source>
  2223. <BoxIdentifier>(0x1300340f, 0x7c5de533)</BoxIdentifier>
  2224. <BoxOutputIndex>0</BoxOutputIndex>
  2225. </Source>
  2226. <Target>
  2227. <BoxIdentifier>(0x0e30ed60, 0x478cbcea)</BoxIdentifier>
  2228. <BoxInputIndex>0</BoxInputIndex>
  2229. </Target>
  2230. </Link>
  2231. <Link>
  2232. <Identifier>(0x6e39519e, 0x1cc44306)</Identifier>
  2233. <Source>
  2234. <BoxIdentifier>(0x50eef0f8, 0x07c4a998)</BoxIdentifier>
  2235. <BoxOutputIndex>0</BoxOutputIndex>
  2236. </Source>
  2237. <Target>
  2238. <BoxIdentifier>(0x77b12090, 0x54b29ceb)</BoxIdentifier>
  2239. <BoxInputIndex>0</BoxInputIndex>
  2240. </Target>
  2241. </Link>
  2242. <Link>
  2243. <Identifier>(0x72ae14cf, 0x7201ea84)</Identifier>
  2244. <Source>
  2245. <BoxIdentifier>(0x68c7947c, 0x0be24bfd)</BoxIdentifier>
  2246. <BoxOutputIndex>1</BoxOutputIndex>
  2247. </Source>
  2248. <Target>
  2249. <BoxIdentifier>(0x56fbfd1a, 0x2c474c9e)</BoxIdentifier>
  2250. <BoxInputIndex>1</BoxInputIndex>
  2251. </Target>
  2252. </Link>
  2253. <Link>
  2254. <Identifier>(0x731aa1b4, 0x14c8e6c0)</Identifier>
  2255. <Source>
  2256. <BoxIdentifier>(0x56fbfd1a, 0x2c474c9e)</BoxIdentifier>
  2257. <BoxOutputIndex>0</BoxOutputIndex>
  2258. </Source>
  2259. <Target>
  2260. <BoxIdentifier>(0x2a62aa62, 0x22b9aa6a)</BoxIdentifier>
  2261. <BoxInputIndex>0</BoxInputIndex>
  2262. </Target>
  2263. </Link>
  2264. <Link>
  2265. <Identifier>(0x7a1da790, 0x4294f3e2)</Identifier>
  2266. <Source>
  2267. <BoxIdentifier>(0x72a5f195, 0x5ef1cbbb)</BoxIdentifier>
  2268. <BoxOutputIndex>0</BoxOutputIndex>
  2269. </Source>
  2270. <Target>
  2271. <BoxIdentifier>(0x08ab469c, 0x10c9257e)</BoxIdentifier>
  2272. <BoxInputIndex>1</BoxInputIndex>
  2273. </Target>
  2274. </Link>
  2275. <Link>
  2276. <Identifier>(0x7ab00c9e, 0x145c672c)</Identifier>
  2277. <Source>
  2278. <BoxIdentifier>(0x348c88da, 0x652055d3)</BoxIdentifier>
  2279. <BoxOutputIndex>0</BoxOutputIndex>
  2280. </Source>
  2281. <Target>
  2282. <BoxIdentifier>(0x72a5f195, 0x5ef1cbbb)</BoxIdentifier>
  2283. <BoxInputIndex>1</BoxInputIndex>
  2284. </Target>
  2285. </Link>
  2286. <Link>
  2287. <Identifier>(0x7b7335e3, 0x11d94d61)</Identifier>
  2288. <Source>
  2289. <BoxIdentifier>(0x03dba115, 0x4c1f8a3a)</BoxIdentifier>
  2290. <BoxOutputIndex>1</BoxOutputIndex>
  2291. </Source>
  2292. <Target>
  2293. <BoxIdentifier>(0x50eef0f8, 0x07c4a998)</BoxIdentifier>
  2294. <BoxInputIndex>0</BoxInputIndex>
  2295. </Target>
  2296. </Link>
  2297. </Links>
  2298. <Comments></Comments>
  2299. <Metadata>
  2300. <Entry>
  2301. <Identifier>(0x1376b5d2, 0x2efa2549)</Identifier>
  2302. <Type>(0x3bcce5d2, 0x43f2d968)</Type>
  2303. <Data>[]</Data>
  2304. </Entry>
  2305. </Metadata>
  2306. <Attributes>
  2307. <Attribute>
  2308. <Identifier>(0x4c90d4ad, 0x7a2554ec)</Identifier>
  2309. <Value>320</Value>
  2310. </Attribute>
  2311. <Attribute>
  2312. <Identifier>(0x7b814cca, 0x271df6dd)</Identifier>
  2313. <Value>480</Value>
  2314. </Attribute>
  2315. </Attributes>
  2316. </OpenViBE-Scenario>