Newer
Older
Markus Frank
committed
//==========================================================================
Markus Frank
committed
//--------------------------------------------------------------------------
// Copyright (C) Organisation europeenne pour la Recherche nucleaire (CERN)
Markus Frank
committed
// All rights reserved.
Markus Frank
committed
// For the licensing terms see $DD4hepINSTALL/LICENSE.
// For the list of contributors see $DD4hepINSTALL/doc/CREDITS.
Markus Frank
committed
// Author : M.Frank
//
//==========================================================================
// Framework include files
#include "DD4hep/InstanceCount.h"
#include "DDG4/Geant4GeneratorAction.h"
Andre Sailer
committed
#include "DDG4/Geant4Kernel.h"
Markus Frank
committed
// Geant4 headers
#include "G4Threading.hh"
#include "G4AutoLock.hh"
// C/C++ include files
#include <stdexcept>
Markus Frank
committed
using namespace std;
Markus Frank
committed
namespace {
G4Mutex action_mutex=G4MUTEX_INITIALIZER;
}
Markus Frank
committed
Geant4GeneratorAction::Geant4GeneratorAction(Geant4Context* ctxt, const string& nam)
Markus Frank
committed
: Geant4Action(ctxt, nam) {
InstanceCount::increment(this);
}
/// Default destructor
Geant4GeneratorAction::~Geant4GeneratorAction() {
InstanceCount::decrement(this);
}
/// Standard constructor
Markus Frank
committed
Geant4SharedGeneratorAction::Geant4SharedGeneratorAction(Geant4Context* ctxt, const string& nam)
: Geant4GeneratorAction(ctxt, nam), m_action(0)
Markus Frank
committed
{
InstanceCount::increment(this);
}
/// Default destructor
Geant4SharedGeneratorAction::~Geant4SharedGeneratorAction() {
Markus Frank
committed
InstanceCount::decrement(this);
}
/// Set or update client for the use in a new thread fiber
void Geant4SharedGeneratorAction::configureFiber(Geant4Context* thread_context) {
m_action->configureFiber(thread_context);
}
/// Underlying object to be used during the execution of this thread
void Geant4SharedGeneratorAction::use(Geant4GeneratorAction* action) {
if (action) {
action->addRef();
m_action = action;
return;
}
throw runtime_error("Geant4SharedGeneratorAction: Attempt to use invalid actor!");
}
/// User generator callback
void Geant4SharedGeneratorAction::operator()(G4Event* event) {
if ( m_action ) {
G4AutoLock protection_lock(&action_mutex); {
ContextSwap swap(m_action,context());
(*m_action)(event);
}
}
}
/// Standard constructor
Geant4GeneratorActionSequence::Geant4GeneratorActionSequence(Geant4Context* ctxt, const string& nam)
Markus Frank
committed
: Geant4Action(ctxt, nam) {
InstanceCount::increment(this);
}
/// Default destructor
Geant4GeneratorActionSequence::~Geant4GeneratorActionSequence() {
m_actors(&Geant4GeneratorAction::release);
m_actors.clear();
m_calls.clear();
InstanceCount::decrement(this);
}
Markus Frank
committed
/// Set or update client context
void Geant4GeneratorActionSequence::updateContext(Geant4Context* ctxt) {
m_context = ctxt;
m_actors.updateContext(ctxt);
}
/// Set or update client for the use in a new thread fiber
void Geant4GeneratorActionSequence::configureFiber(Geant4Context* thread_context) {
m_actors(&Geant4Action::configureFiber, thread_context);
}
/// Get an action by name
Geant4GeneratorAction* Geant4GeneratorActionSequence::get(const string& nam) const {
return m_actors.get(FindByName(TypeName::split(nam).second));
}
/// Add an actor responding to all callbacks. Sequence takes ownership.
void Geant4GeneratorActionSequence::adopt(Geant4GeneratorAction* action) {
if (action) {
Markus Frank
committed
G4AutoLock protection_lock(&action_mutex);
action->addRef();
m_actors.add(action);
return;
}
Markus Frank
committed
throw runtime_error("Geant4GeneratorActionSequence: Attempt to add invalid actor!");
void Geant4GeneratorActionSequence::operator()(G4Event* event) {
m_actors(&Geant4GeneratorAction::operator(), event);