// for every line in the input data of the column computation node // this program is doing the following // at the beginning, we are setting the default value for string aoi to "none" // this means, that we assume, that there is no gaze inside an AOI string aoi = "none"; // however, if there is a gaze inside the AOI Flower Garden, then aoi is set to be "Flower Garden" if (on_srf_AOI_Flower_Garden_Input_2_ == "True") { aoi = "Flower Garden"; } // else, if there is a gaze inside the AOI Blickshift, then aoi is set to be "Blickshift" else if (on_srf_AOI_Blickshift_Input_3_ == "True") { aoi = "Blickshift"; } // else, if there is a gaze inside the AOI Island, then aoi is set to be "Island" else if (on_srf_AOI_Island_Input_4_ == "True") { aoi = "Island"; } //program is returning string AOI containing the gaze or "none" if no aoi was matched return aoi;