_____________________________________________________________________________
| 246 | |
| 247 | //_____________________________________________________________________________ |
| 248 | void G4VAnalysisManager::SetNtupleManager(std::shared_ptr<G4VNtupleManager> ntupleManager) |
| 249 | { |
| 250 | fVNtupleManager = std::move(ntupleManager); |
| 251 | if (fVNtupleManager != nullptr) { |
| 252 | fVNtupleManager->SetFirstId(fNtupleBookingManager->GetFirstId()); |
| 253 | fVNtupleManager->SetFirstNtupleColumnId(fNtupleBookingManager->GetFirstNtupleColumnId()); |
| 254 | } |
| 255 | } |
| 256 | |
| 257 | //_____________________________________________________________________________ |
| 258 | void G4VAnalysisManager::SetNtupleFileManager( |
nothing calls this directly
no test coverage detected