MCPcopy Create free account
hub / github.com/Kitware/VTK / GetTableName

Method GetTableName

Common/DataModel/vtkStatisticalModel.cxx:272–287  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

270}
271
272std::string vtkStatisticalModel::GetTableName(int type, int index)
273{
274 std::string name;
275 auto* table = this->GetTable(type, index);
276 if (!table)
277 {
278 return name;
279 }
280 auto* info = table->GetInformation();
281 if (!info)
282 {
283 return name;
284 }
285 name = info->Get(vtkCompositeDataSet::NAME());
286 return name;
287}
288
289vtkTable* vtkStatisticalModel::FindTableByName(int type, const std::string& tableName)
290{

Callers 14

PrintSelfMethod · 0.95
WriteModelDataInlineMethod · 0.80
WriteDataMethod · 0.80
DeepCopyMethod · 0.80
DeriveMethod · 0.80
AddModelToAssemblyFunction · 0.80
TestMethod · 0.80
AggregateMethod · 0.80
DeriveMethod · 0.80
TestOrderStatisticsFunction · 0.80

Calls 3

GetTableMethod · 0.95
GetInformationMethod · 0.45
GetMethod · 0.45

Tested by 5

TestMethod · 0.64
TestOrderStatisticsFunction · 0.64
RandomSampleStatisticsFunction · 0.64