comparison rdf/PluginRDFDescription.cpp @ 732:87a9168efd71 dataquay

Comment out some debug output
author Chris Cannam
date Mon, 21 May 2012 22:38:16 +0100
parents 27c861cce97b
children e802e550a1f2
comparison
equal deleted inserted replaced
731:760feced8380 732:87a9168efd71
282 } else if (outputType.contains("TrackLevelOutput")) { 282 } else if (outputType.contains("TrackLevelOutput")) {
283 m_outputDispositions[outputId] = OutputTrackLevel; 283 m_outputDispositions[outputId] = OutputTrackLevel;
284 } else { 284 } else {
285 m_outputDispositions[outputId] = OutputDispositionUnknown; 285 m_outputDispositions[outputId] = OutputDispositionUnknown;
286 } 286 }
287 cerr << "output " << output << " -> id " << outputId << ", type " << outputType << ", unit " 287 // cerr << "output " << output << " -> id " << outputId << ", type " << outputType << ", unit "
288 << outputUnit << ", disposition " << m_outputDispositions[outputId] << endl; 288 // << outputUnit << ", disposition " << m_outputDispositions[outputId] << endl;
289 289
290 if (outputUnit != "") { 290 if (outputUnit != "") {
291 m_outputUnitMap[outputId] = outputUnit; 291 m_outputUnitMap[outputId] = outputUnit;
292 } 292 }
293 293
295 if (n.type == Node::Literal && n.value != "") { 295 if (n.type == Node::Literal && n.value != "") {
296 m_outputNames[outputId] = n.value; 296 m_outputNames[outputId] = n.value;
297 } 297 }
298 298
299 n = index->complete(Triple(output, index->expand("vamp:computes_event_type"), Node())); 299 n = index->complete(Triple(output, index->expand("vamp:computes_event_type"), Node()));
300 cerr << output << " -> computes_event_type " << n << endl; 300 // cerr << output << " -> computes_event_type " << n << endl;
301 if (n.type == Node::URI && n.value != "") { 301 if (n.type == Node::URI && n.value != "") {
302 m_outputEventTypeURIMap[outputId] = n.value; 302 m_outputEventTypeURIMap[outputId] = n.value;
303 } 303 }
304 304
305 n = index->complete(Triple(output, index->expand("vamp:computes_feature"), Node())); 305 n = index->complete(Triple(output, index->expand("vamp:computes_feature"), Node()));