| 117 | } |
| 118 | |
| 119 | G4VDigitizerModule* G4DigiManager::FindDigitizerModule(const G4String& mName) |
| 120 | { |
| 121 | for(G4int i=0;i<G4int(DMtable.size());++i) |
| 122 | { |
| 123 | if(DMtable[i]->GetName() == mName) return DMtable[i]; |
| 124 | } |
| 125 | return NULL; |
| 126 | } |
| 127 | |
| 128 | const G4VHitsCollection* G4DigiManager::GetHitsCollection(G4int HCID,G4int eventID) |
| 129 | { |
no test coverage detected