Skip to content
Snippets Groups Projects
Commit c5c7204c authored by Adrien Matta's avatar Adrien Matta :skull_crossbones:
Browse files

* Fixing issue whebn reload geometry

        - The Initial conditions and Run leaf deassapear
parent 268c2f29
No related branches found
No related tags found
No related merge requests found
...@@ -138,7 +138,7 @@ void RootOutput::InitAsciiFiles(){ ...@@ -138,7 +138,7 @@ void RootOutput::InitAsciiFiles(){
pEventGenerator = new TAsciiFile(); pEventGenerator = new TAsciiFile();
pEventGenerator->SetNameTitle("EventGenerator", fileNameEG.Data()); pEventGenerator->SetNameTitle("EventGenerator", fileNameEG.Data());
pEventGenerator->Append(fileNameEG.Data()); pEventGenerator->Append(fileNameEG.Data());
pEventGenerator->Write(); pEventGenerator->Write(0,TAsciiFile::kOverwrite);
// Detector configuration // Detector configuration
// Get file name from NPOptionManager // Get file name from NPOptionManager
...@@ -146,7 +146,7 @@ void RootOutput::InitAsciiFiles(){ ...@@ -146,7 +146,7 @@ void RootOutput::InitAsciiFiles(){
pDetectorConfiguration = new TAsciiFile(); pDetectorConfiguration = new TAsciiFile();
pDetectorConfiguration->SetNameTitle("DetectorConfiguration", fileNameDC.Data()); pDetectorConfiguration->SetNameTitle("DetectorConfiguration", fileNameDC.Data());
pDetectorConfiguration->Append(fileNameDC.Data()); pDetectorConfiguration->Append(fileNameDC.Data());
pDetectorConfiguration->Write(); pDetectorConfiguration->Write(0,TAsciiFile::kOverwrite);
// Run to treat file // Run to treat file
// Get file name from NPOptionManager // Get file name from NPOptionManager
...@@ -155,7 +155,7 @@ void RootOutput::InitAsciiFiles(){ ...@@ -155,7 +155,7 @@ void RootOutput::InitAsciiFiles(){
TString fileNameRT = OptionManager->GetRunToReadFile(); TString fileNameRT = OptionManager->GetRunToReadFile();
pRunToTreatFile->SetNameTitle("RunToTreat", fileNameRT.Data()); pRunToTreatFile->SetNameTitle("RunToTreat", fileNameRT.Data());
pRunToTreatFile->Append(fileNameRT.Data()); pRunToTreatFile->Append(fileNameRT.Data());
pRunToTreatFile->Write(); pRunToTreatFile->Write(0,TAsciiFile::kOverwrite);
} }
// Calibration files // Calibration files
...@@ -163,13 +163,13 @@ void RootOutput::InitAsciiFiles(){ ...@@ -163,13 +163,13 @@ void RootOutput::InitAsciiFiles(){
if (!OptionManager->IsDefault("Calibration")) { if (!OptionManager->IsDefault("Calibration")) {
TString fileNameCal = OptionManager->GetCalibrationFile(); TString fileNameCal = OptionManager->GetCalibrationFile();
pCalibrationFile->SetNameTitle("Calibration", fileNameCal.Data()); pCalibrationFile->SetNameTitle("Calibration", fileNameCal.Data());
pCalibrationFile->Write(); pCalibrationFile->Write(0,TAsciiFile::kOverwrite);
} }
// Analysis configuration files // Analysis configuration files
pAnalysisConfigFile = new TAsciiFile(); pAnalysisConfigFile = new TAsciiFile();
pAnalysisConfigFile->SetNameTitle("AnalysisConfig", "AnalysisConfig"); pAnalysisConfigFile->SetNameTitle("AnalysisConfig", "AnalysisConfig");
pAnalysisConfigFile->Write(); pAnalysisConfigFile->Write(0,TAsciiFile::kOverwrite);
} }
...@@ -180,11 +180,7 @@ RootOutput::~RootOutput(){ ...@@ -180,11 +180,7 @@ RootOutput::~RootOutput(){
if (pRootFile && !NPOptionManager::getInstance()->GetPROOF()) { if (pRootFile && !NPOptionManager::getInstance()->GetPROOF()) {
TDirectory* currentPath= gDirectory; TDirectory* currentPath= gDirectory;
gDirectory->cd(pRootFile->GetPath()); gDirectory->cd(pRootFile->GetPath());
cout << endl;
cout << endl << "Root Output summary" << endl;
cout << " - Number of entries in the Tree: " << pRootTree->GetEntries() << endl;
cout << " - Number of bites written to file: " << pRootTree->Write("", TObject::kOverwrite) << endl;
// write TAsciiFile if used // write TAsciiFile if used
// EventGenerator // EventGenerator
if (!pEventGenerator->IsEmpty()) pEventGenerator->Write(0,TAsciiFile::kOverwrite); if (!pEventGenerator->IsEmpty()) pEventGenerator->Write(0,TAsciiFile::kOverwrite);
...@@ -196,7 +192,15 @@ RootOutput::~RootOutput(){ ...@@ -196,7 +192,15 @@ RootOutput::~RootOutput(){
if (!pRunToTreatFile->IsEmpty()) pRunToTreatFile->Write(0,TAsciiFile::kOverwrite); if (!pRunToTreatFile->IsEmpty()) pRunToTreatFile->Write(0,TAsciiFile::kOverwrite);
// Analysis ConfigFile // Analysis ConfigFile
if (!pAnalysisConfigFile->IsEmpty()) pAnalysisConfigFile->Write(0,TAsciiFile::kOverwrite); if (!pAnalysisConfigFile->IsEmpty()) pAnalysisConfigFile->Write(0,TAsciiFile::kOverwrite);
cout << endl;
cout << endl << "Root Output summary" << endl;
cout << " - Number of entries in the Tree: " << pRootTree->GetEntries() << endl;
cout << " - Number of bites written to file: " << pRootTree->Write(0, TObject::kOverwrite) << endl;
pRootFile->Flush(); pRootFile->Flush();
pRootFile->Purge(1);
gDirectory->cd(currentPath->GetPath()); gDirectory->cd(currentPath->GetPath());
pRootFile->Close(); pRootFile->Close();
} }
......
...@@ -55,6 +55,7 @@ ...@@ -55,6 +55,7 @@
#include "NPSDetectorFactory.hh" #include "NPSDetectorFactory.hh"
#include "MaterialManager.hh" #include "MaterialManager.hh"
#include "DetectorMessenger.hh" #include "DetectorMessenger.hh"
#include "ParticleStack.hh"
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
DetectorConstruction::DetectorConstruction(): world_log(0), world_phys(0){ DetectorConstruction::DetectorConstruction(): world_log(0), world_phys(0){
...@@ -156,7 +157,7 @@ G4VPhysicalVolume* DetectorConstruction::ReadConfigurationFile(){ ...@@ -156,7 +157,7 @@ G4VPhysicalVolume* DetectorConstruction::ReadConfigurationFile(){
else if (LineBuffer.compare(0, 13, "GeneralTarget") == 0 && cGeneralTarget == false) { else if (LineBuffer.compare(0, 13, "GeneralTarget") == 0 && cGeneralTarget == false) {
cGeneralTarget = true ; cGeneralTarget = true ;
if(VerboseLevel==1) G4cout << G4endl << "////////// Target ///////////" << G4endl << G4endl ; if(VerboseLevel) G4cout << G4endl << "////////// Target ///////////" << G4endl << G4endl ;
// Instantiate the new array as aNPS::VDetector Objects // Instantiate the new array as aNPS::VDetector Objects
NPS::VDetector* myDetector = new Target(); NPS::VDetector* myDetector = new Target();
...@@ -179,7 +180,7 @@ G4VPhysicalVolume* DetectorConstruction::ReadConfigurationFile(){ ...@@ -179,7 +180,7 @@ G4VPhysicalVolume* DetectorConstruction::ReadConfigurationFile(){
else if (LineBuffer.compare(0, 14, "GeneralChamber") == 0 && cGeneralChamber == false) { else if (LineBuffer.compare(0, 14, "GeneralChamber") == 0 && cGeneralChamber == false) {
cGeneralChamber = true ; cGeneralChamber = true ;
if(VerboseLevel==1) G4cout << G4endl << "////////// Chamber ///////////" << G4endl << G4endl ; if(VerboseLevel) G4cout << G4endl << "////////// Chamber ///////////" << G4endl << G4endl ;
// Instantiate the new array as aNPS::VDetector Objects // Instantiate the new array as aNPS::VDetector Objects
NPS::VDetector* myDetector = new Chamber(); NPS::VDetector* myDetector = new Chamber();
...@@ -202,10 +203,12 @@ G4VPhysicalVolume* DetectorConstruction::ReadConfigurationFile(){ ...@@ -202,10 +203,12 @@ G4VPhysicalVolume* DetectorConstruction::ReadConfigurationFile(){
oss >> token ; oss >> token ;
NPS::VDetector* detector = theFactory->Construct(token); NPS::VDetector* detector = theFactory->Construct(token);
if(detector!=NULL && check.find(token)==check.end()){ if(detector!=NULL && check.find(token)==check.end()){
if(VerboseLevel){
cout << "/////////////////////////////////////////" << endl; cout << "/////////////////////////////////////////" << endl;
cout << "//// Adding Detector " << token << endl; cout << "//// Adding Detector " << token << endl;
detector->ReadConfiguration(Path); detector->ReadConfiguration(Path);
cout << "/////////////////////////////////////////" << endl; cout << "/////////////////////////////////////////" << endl;
}
// Add array to the VDetector Vector // Add array to the VDetector Vector
AddDetector(detector); AddDetector(detector);
check.insert(token); check.insert(token);
...@@ -276,9 +279,13 @@ void DetectorConstruction::ClearGeometry(){ ...@@ -276,9 +279,13 @@ void DetectorConstruction::ClearGeometry(){
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void DetectorConstruction::RedefineGeometry(std::string file){ void DetectorConstruction::RedefineGeometry(std::string file){
ClearGeometry() ; ClearGeometry() ;
// RootOutput::getInstance()->GetTree()->FlushBaskets();
// RootOutput::getInstance()->GetTree()->AutoSave();
// RootOutput::getInstance()->GetTree()->GetCurrentFile()->Write();
RootOutput::getInstance()->GetTree()->ResetBranchAddresses(); // RootOutput::getInstance()->GetTree()->ResetBranchAddresses();
RootOutput::getInstance()->GetTree()->GetListOfBranches()->Clear(); //RootOutput::getInstance()->GetTree()->GetListOfBranches()->Clear();
if(file!="") if(file!="")
NPOptionManager::getInstance()->SetDetectorFile(file); NPOptionManager::getInstance()->SetDetectorFile(file);
...@@ -286,6 +293,8 @@ void DetectorConstruction::RedefineGeometry(std::string file){ ...@@ -286,6 +293,8 @@ void DetectorConstruction::RedefineGeometry(std::string file){
G4RunManager::GetRunManager()->DefineWorldVolume(Construct()); G4RunManager::GetRunManager()->DefineWorldVolume(Construct());
G4RunManager::GetRunManager()->GeometryHasBeenModified(); G4RunManager::GetRunManager()->GeometryHasBeenModified();
G4RunManager::GetRunManager()->Initialize(); G4RunManager::GetRunManager()->Initialize();
ParticleStack::getInstance()->AttachInitialConditions();
} }
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
...@@ -298,8 +307,5 @@ void DetectorConstruction::ExportGeometry(string file){ ...@@ -298,8 +307,5 @@ void DetectorConstruction::ExportGeometry(string file){
file = ""; file = "";
G4cout << "You need to compile Geant4 with GDML support to use this command" << G4endl; G4cout << "You need to compile Geant4 with GDML support to use this command" << G4endl;
#endif #endif
} }
...@@ -66,6 +66,7 @@ void EventAction::EndOfEventAction(const G4Event* event){ ...@@ -66,6 +66,7 @@ void EventAction::EndOfEventAction(const G4Event* event){
if(treated%10000==0){ if(treated%10000==0){
tree->AutoSave(); tree->AutoSave();
RootOutput::getInstance()->GetFile()->SaveSelf(kTRUE); RootOutput::getInstance()->GetFile()->SaveSelf(kTRUE);
RootOutput::getInstance()->GetFile()->Purge();
} }
} }
......
...@@ -53,6 +53,7 @@ ParticleStack::ParticleStack(){ ...@@ -53,6 +53,7 @@ ParticleStack::ParticleStack(){
// Instantiate the TInitialConditions object and link it to the RootOutput tree // Instantiate the TInitialConditions object and link it to the RootOutput tree
m_InitialConditions = new TInitialConditions(); m_InitialConditions = new TInitialConditions();
AttachInitialConditions();
RootOutput::getInstance()->GetTree()->Branch("InitialConditions","TInitialConditions",&m_InitialConditions); RootOutput::getInstance()->GetTree()->Branch("InitialConditions","TInitialConditions",&m_InitialConditions);
m_EventZero = true; m_EventZero = true;
...@@ -65,6 +66,12 @@ ParticleStack::~ParticleStack(){ ...@@ -65,6 +66,12 @@ ParticleStack::~ParticleStack(){
} }
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void ParticleStack::AttachInitialConditions(){
RootOutput::getInstance()->GetTree()->Branch("InitialConditions","TInitialConditions",&m_InitialConditions);
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
vector<Particle> ParticleStack::GetParticleStack(){ vector<Particle> ParticleStack::GetParticleStack(){
return m_ParticleStack; return m_ParticleStack;
......
...@@ -101,5 +101,9 @@ class ParticleStack{ ...@@ -101,5 +101,9 @@ class ParticleStack{
// Shoot everything in the stack at the end of the event // Shoot everything in the stack at the end of the event
void ShootAllParticle(G4Event* anEvent); void ShootAllParticle(G4Event* anEvent);
// Attach the InitialConditions object to the tree
void AttachInitialConditions();
}; };
#endif #endif
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
#include "RootOutput.h" #include "RootOutput.h"
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
RunAction::RunAction(): G4UserRunAction(){ RunAction::RunAction(): G4UserRunAction(){
RootOutput::getInstance()->GetTree()->Branch("Run",&m_RunNumber,"Run/I"); RootOutput::getInstance()->GetTree()->Branch("Run",&m_RunNumber);
} }
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
...@@ -40,6 +40,12 @@ RunAction::~RunAction(){ ...@@ -40,6 +40,12 @@ RunAction::~RunAction(){
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void RunAction::BeginOfRunAction(const G4Run* aRun){ void RunAction::BeginOfRunAction(const G4Run* aRun){
cout << "Starting run " << aRun->GetRunID()+1;
// Replug the branch in case it no longer exist (e.g. reloading geometry)
RootOutput::getInstance()->GetTree()->Branch("Run",&m_RunNumber);
// Increment the run number to be stored in the tree
m_RunNumber = aRun->GetRunID()+1; m_RunNumber = aRun->GetRunID()+1;
//initialize event cumulative quantities //initialize event cumulative quantities
...@@ -50,5 +56,7 @@ void RunAction::BeginOfRunAction(const G4Run* aRun){ ...@@ -50,5 +56,7 @@ void RunAction::BeginOfRunAction(const G4Run* aRun){
void RunAction::EndOfRunAction(const G4Run*){ void RunAction::EndOfRunAction(const G4Run*){
// Pass a line for nicer presentation when chainning event generator // Pass a line for nicer presentation when chainning event generator
cout << endl; cout << endl;
// Force the tree to be saved at the end of the run
RootOutput::getInstance()->GetTree()->AutoSave("Overwrite SaveSelf");
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment