Import Geant4 11.4.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2025-06-26 09:17:29 +02:00
parent 20a218bbe1
commit a499fb82e9
1941 changed files with 203285 additions and 95593 deletions
+11
View File
@@ -244,6 +244,11 @@ class G4UImanager : public G4VStateDependent
inline bool IsLastCommandOutputTreated() { return fLastCommandOutputTreated; }
inline void SetLastCommandOutputTreated() { fLastCommandOutputTreated = true; }
void StartRecording(G4String fn, G4bool ifAppend,
G4bool ifTemp=false, G4String assocCmd="**NOCMD**");
void RecordCommand(const G4String& aCommand);
G4int EndRecording();
protected:
G4UImanager();
@@ -293,6 +298,12 @@ class G4UImanager : public G4VStateDependent
G4int lastRC = 0;
G4bool fLastCommandOutputTreated = true;
G4int fRecordDepth = -1;
std::vector<std::ofstream*> fRecordFile;
std::vector<std::pair<G4String,G4bool>> fRecordFileName;
std::vector<G4String> fAccosiatedCommand;
};
#endif