Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DD4hep
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cepc
externals
mirroring
DD4hep
Commits
a703b6a3
Commit
a703b6a3
authored
2 years ago
by
Markus Frank
Committed by
MarkusFrankATcernch
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix rebase errors
parent
3e416d14
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
DDG4/include/DDG4/DDG4Dict.h
+0
-2
0 additions, 2 deletions
DDG4/include/DDG4/DDG4Dict.h
DDG4/include/DDG4/Geant4StackingAction.h
+3
-3
3 additions, 3 deletions
DDG4/include/DDG4/Geant4StackingAction.h
with
3 additions
and
5 deletions
DDG4/include/DDG4/DDG4Dict.h
+
0
−
2
View file @
a703b6a3
...
...
@@ -83,11 +83,9 @@ namespace { class DDG4Dict {}; }
/// Dictionaires for basic Hit data structures
#pragma link C++ class dd4hep::sim::Geant4HitData+;
namespace
dd4hep
{
namespace
sim
{
typedef
Geant4HitData
*
Geant4HitData_ptr_t
;
}}
#pragma link C++ typedef dd4hep::sim::Geant4HitData_ptr_t;
#pragma link C++ class std::vector<dd4hep::sim::Geant4HitData_ptr_t>+;
#pragma link C++ class std::vector<dd4hep::sim::Geant4HitData*>+;
#pragma link C++ class dd4hep::sim::Geant4HitData::Contribution+;
#pragma link C++ class dd4hep::sim::Geant4HitData::Contributions+;
...
...
This diff is collapsed.
Click to expand it.
DDG4/include/DDG4/Geant4StackingAction.h
+
3
−
3
View file @
a703b6a3
...
...
@@ -98,7 +98,7 @@ namespace dd4hep {
/// Default destructor
virtual
~
Geant4SharedStackingAction
();
/// Set or update client for the use in a new thread fiber
virtual
void
configureFiber
(
Geant4Context
*
thread_context
);
virtual
void
configureFiber
(
Geant4Context
*
thread_context
)
override
;
/// Underlying object to be used during the execution of this thread
virtual
void
use
(
Geant4StackingAction
*
action
);
/// New-stage callback
...
...
@@ -142,9 +142,9 @@ namespace dd4hep {
/// Default destructor
virtual
~
Geant4StackingActionSequence
();
/// Set or update client context
virtual
void
updateContext
(
Geant4Context
*
ctxt
);
virtual
void
updateContext
(
Geant4Context
*
ctxt
)
override
;
/// Set or update client for the use in a new thread fiber
virtual
void
configureFiber
(
Geant4Context
*
thread_context
);
virtual
void
configureFiber
(
Geant4Context
*
thread_context
)
override
;
/// Get an action by name
Geant4StackingAction
*
get
(
const
std
::
string
&
name
)
const
;
/// Register begin-of-event callback. Types Q and T must be polymorph!
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment