Please fill out the following information to help in answering your question, and also see tips for posting code snippets. If you don’t provide this information it will take more time to help with your problem!
Geant4 Version:11.2.2
Operating System:Ubuntu 22.04
Compiler/Version:11.4.0
CMake Version:3.22.1
Dear Experts,
I’m running example B5 to learn how to fill ntuples with std::vectors. The example compiles and runs without problems. I tried to add a column myself to see if I could do it and the program does not compile anymore. Here’s what I did:
In EventAction.hh
class EventAction : public G4UserEventAction
private:
std::vector<G4double> vec_test;
In EventAction.cc
void EventAction::BeginOfEventAction(const G4Event*)
{
vec_test={0.1, 0.2, 0.3};
}
void EventAction::EndOfEventAction(const G4Event* event)
{
analysisManager->FillNtupleDColumn(8, vec_test);
analysisManager->AddNtupleRow();
}
And of course in RunAction.cc
analysisManager->CreateNtupleDColumn("Test", fEventAction->vec_test);
The compiler error I get is:
/home/dboccanfuso/geant4_local/test_range/B5/src/EventAction.cc: In member function ‘virtual void B5::EventAction::EndOfEventAction(const G4Event*)’:
/home/dboccanfuso/geant4_local/test_range/B5/src/EventAction.cc:240:37: error: no matching function for call to ‘G4GenericAnalysisManager::FillNtupleDColumn(int, std::vector<double>&)’
240 | analysisManager->FillNtupleDColumn(8, vec_test);
I don’t see where my error lies.