| 53 | } |
| 54 | |
| 55 | void G4VDigitizerModule::StoreDigiCollection(G4VDigiCollection* aDC) |
| 56 | { |
| 57 | G4String DCnam = moduleName; |
| 58 | DCnam += "/"; |
| 59 | DCnam += aDC->GetName(); |
| 60 | G4int DCID = DigiManager->GetDigiCollectionID(DCnam); |
| 61 | if(DCID>=0) StoreDigiCollection(DCID,aDC); |
| 62 | } |
| 63 | |
| 64 | void G4VDigitizerModule::StoreDigiCollection(G4int DCID,G4VDigiCollection* aDC) |
| 65 | { |
nothing calls this directly
no test coverage detected