2022-03-17 12:03:30 +01:00
|
|
|
// -----------------
|
|
|
|
// Copyright © 2022 ACK Cyfronet AGH, Poland.
|
|
|
|
// -----------------
|
|
|
|
//
|
|
|
|
// Sample application definition created for demonstration of creating custom applications functionality
|
|
|
|
// See also https://docs.cyfronet.pl/display/ISDOC/Creating+Custom+Applications
|
|
|
|
//
|
2022-03-17 11:20:49 +01:00
|
|
|
{
|
|
|
|
"scriptLanguage" : "OCTAVE",
|
2022-10-18 11:01:49 +02:00
|
|
|
"executableScriptName" : "sampleApp.m",
|
2022-03-17 11:20:49 +01:00
|
|
|
"inputFiles" : [ {
|
|
|
|
"dataType" : "double_vector",
|
|
|
|
"multiplicity" : {
|
|
|
|
"minCount" : 1,
|
|
|
|
"maxCount" : 1
|
|
|
|
}
|
|
|
|
} ],
|
|
|
|
"inputParameters" : [ {
|
|
|
|
"type" : "INTEGER",
|
2022-10-18 13:55:39 +02:00
|
|
|
"name" : "Multiplier"
|
2022-03-17 11:20:49 +01:00
|
|
|
} ],
|
|
|
|
"outputs" : [ {
|
2022-10-18 11:01:49 +02:00
|
|
|
"dataType" : "double_vector",
|
|
|
|
"isReturnedValue" : true
|
2022-03-17 11:20:49 +01:00
|
|
|
} ],
|
2022-03-17 12:03:30 +01:00
|
|
|
"requiredTools" : [ "octave" ]
|
2022-03-17 11:20:49 +01:00
|
|
|
}
|