_____________________________________________________________________________
| 106 | |
| 107 | //_____________________________________________________________________________ |
| 108 | G4String G4BaseFileManager::GetNtupleFileName(const G4String& ntupleName, |
| 109 | G4int cycle) const |
| 110 | { |
| 111 | // Do not pass cycle if supported by the output type |
| 112 | auto cycleToPass = (HasCycles()) ? 0 : cycle; |
| 113 | |
| 114 | return G4Analysis::GetNtupleFileName(fFileName, GetFileType(), ntupleName, cycleToPass); |
| 115 | } |
| 116 | |
| 117 | //_____________________________________________________________________________ |
| 118 | G4String G4BaseFileManager::GetNtupleFileName(G4int ntupleFileNumber, |
nothing calls this directly
no test coverage detected