_____________________________________________________________________________
| 69 | |
| 70 | //_____________________________________________________________________________ |
| 71 | G4bool G4CsvNtupleFileManager::ActionAtWrite() |
| 72 | { |
| 73 | auto result = true; |
| 74 | |
| 75 | auto ntupleVector = fNtupleManager->GetNtupleDescriptionVector(); |
| 76 | |
| 77 | for ( auto ntupleDescription : ntupleVector ) { |
| 78 | if (ntupleDescription->GetNtuple() != nullptr) { |
| 79 | // Notify not empty file |
| 80 | result &= fFileManager->NotifyNtupleFile(ntupleDescription); |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | return result; |
| 85 | } |
| 86 | |
| 87 | //_____________________________________________________________________________ |
| 88 | G4bool G4CsvNtupleFileManager::ActionAtCloseFile() |
nothing calls this directly
no test coverage detected