| 88 | } |
| 89 | |
| 90 | void G4VtkStore::Modified() |
| 91 | { |
| 92 | #ifdef G4VTKDEBUG |
| 93 | G4cout << "G4VtkStore::Modified() " << name << G4endl; |
| 94 | #endif |
| 95 | |
| 96 | for (const auto& it : polylinePipeMap) |
| 97 | it.second->Modified(); |
| 98 | |
| 99 | for (const auto& it : polyline2DPipeMap) |
| 100 | it.second->Modified(); |
| 101 | |
| 102 | for (const auto& it : circlePipeMap) |
| 103 | it.second->Modified(); |
| 104 | |
| 105 | for (const auto& it : squarePipeMap) |
| 106 | it.second->Modified(); |
| 107 | |
| 108 | for (const auto& it : textPipeMap) |
| 109 | it.second->Modified(); |
| 110 | |
| 111 | for (const auto& it : text2DPipeMap) |
| 112 | it.second->Modified(); |
| 113 | |
| 114 | for (const auto& it : separatePipeMap) |
| 115 | it.second->Modified(); |
| 116 | |
| 117 | for (const auto& it : tensorGlyphPipeMap) |
| 118 | it.second->Modified(); |
| 119 | |
| 120 | for (const auto& it : appendPipeMap) |
| 121 | it.second->Modified(); |
| 122 | |
| 123 | for (const auto& it : bakePipeMap) |
| 124 | it.second->Modified(); |
| 125 | } |
| 126 | |
| 127 | void G4VtkStore::Clear() |
| 128 | { |
no outgoing calls
no test coverage detected