| 127 | } |
| 128 | // |
| 129 | void doiPETRun::Clear(){ |
| 130 | //clear the content of the associative containers, the multimap and the set |
| 131 | std::multimap< G4int, InteractionInformation* >::iterator mitr2; |
| 132 | for( mitr2= mapBlockInteraction.begin(); mitr2!=mapBlockInteraction.end(); mitr2++){ |
| 133 | delete (*mitr2).second; |
| 134 | } |
| 135 | |
| 136 | mapBlockInteraction.clear(); |
| 137 | setBlockInteraction.clear(); |
| 138 | // |
| 139 | } |
| 140 | // |
| 141 | void doiPETRun::GetEventIDRun(G4int evt){ |
| 142 | eventID = evt; |
no test coverage detected