Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify that event processing includes Initialisation time #1366

Merged
merged 2 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DDCore/include/DD4hep/Volumes.h
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ namespace dd4hep {
/// If we import volumes from external sources, we have to attach the extensions to the tree
Volume& import();

/// Divide volume into subsections (See the ROOT manuloa for details)
/// Divide volume into subsections (See the ROOT manual for details)
Volume divide(const std::string& divname, int iaxis, int ndiv, double start, double step, int numed = 0, const char* option = "");
/** Daughter placements with auto-generated copy number for the daughter volume */
/// Place daughter volume. The position and rotation are the identity
Expand Down
2 changes: 1 addition & 1 deletion DDG4/python/DDSim/DD4hepSimulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ def run(self):
if processedEvents != 0:
eventTime = totalTimeUser - startUpTime
perEventTime = eventTime / processedEvents
logger.info("StartUp Time: %3.2f s, Event Processing: %3.2f s (%3.2f s/Event) "
logger.info("StartUp Time: %3.2f s, Processing and Init: %3.2f s (~%3.2f s/Event) "
% (startUpTime, eventTime, perEventTime))
return exitCode

Expand Down
Loading