Newer
Older
Markus Frank
committed
//==========================================================================
// AIDA Detector description implementation for LCD
//--------------------------------------------------------------------------
// 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/Printout.h"
#include "DD4hep/Primitives.h"
#include "DD4hep/InstanceCount.h"
#include "DDG4/Geant4Kernel.h"
#include "DDG4/Geant4HitCollection.h"
#include "DDG4/Geant4SensDetAction.h"
Markus Frank
committed
// Geant4 include files
#include "G4VSensitiveDetector.hh"
/// Namespace for the AIDA detector description toolkit
/// Namespace for the Geant4 based simulation part of the AIDA detector description toolkit
namespace Simulation {
/// Private helper to support sequence reference counting
/**
* \author M.Frank
* \version 1.0
* \ingroup DD4HEP_SIMULATION
*/
template <typename T> class RefCountedSequence {
public:
typedef RefCountedSequence<T> Base;
T* m_sequence;
virtual ~RefCountedSequence() { _release(); }
void _aquire(T* s) {
Markus Frank
committed
InstanceCount::increment(this);
m_sequence = s;
m_sequence->addRef();
Markus Frank
committed
releasePtr(m_sequence);
InstanceCount::decrement(this);
/// Concrete implementation of the G4VSensitiveDetector calling the registered sequence object
/**
* \author M.Frank
* \version 1.0
* \ingroup DD4HEP_SIMULATION
*/
Markus Frank
committed
class Geant4SensDet : virtual public G4VSensitiveDetector,
virtual public G4VSDFilter,
virtual public Geant4ActionSD,
virtual public RefCountedSequence<Geant4SensDetActionSequence>
protected:
/// Access to the geant4 sensitive detector handle
SensitiveDetector m_sensitive;
/// Constructor. The detector element is identified by the name
Geant4SensDet(const std::string& nam, Geometry::LCDD& lcdd)
Markus Frank
committed
: G4VSensitiveDetector(nam), G4VSDFilter(nam),
Geant4Action(0,nam), Geant4ActionSD(nam), Base()
Geant4Kernel& master = Geant4Kernel::instance(lcdd);
Geant4Kernel& kernel = master.worker(Geant4Kernel::thread_self());
Markus Frank
committed
m_sensitive = lcdd.sensitiveDetector(nam);
m_context = kernel.workerContext();
Markus Frank
committed
m_outputLevel = kernel.getOutputLevel(nam);
_aquire(kernel.sensitiveAction(nam));
m_sequence->defineCollections(this);
Markus Frank
committed
m_sequence->updateContext(m_context);
Markus Frank
committed
this->G4VSensitiveDetector::SetFilter(this);
}
/// Destructor
virtual ~Geant4SensDet() { }
/// Overload to avoid ambiguity between G4VSensitiveDetector and G4VSDFilter
inline G4String GetName() const
{ return this->G4VSensitiveDetector::SensitiveDetectorName; }
/// G4VSensitiveDetector internals: Access to the detector path name
virtual std::string path() const
{ return this->G4VSensitiveDetector::GetPathName(); }
/// G4VSensitiveDetector internals: Access to the detector path name
virtual std::string fullPath() const
{ return this->G4VSensitiveDetector::GetFullPathName(); }
/// Is the detector active?
virtual bool isActive() const
{ return this->G4VSensitiveDetector::isActive(); }
Markus Frank
committed
/// This is a utility method which returns the hits collection ID
virtual G4int GetCollectionID(G4int i)
{ return this->G4VSensitiveDetector::GetCollectionID(i); }
/// Access to the readout geometry of the sensitive detector
virtual G4VReadOutGeometry* readoutGeometry() const
{ return this->G4VSensitiveDetector::GetROgeometry(); }
/// Access to the LCDD sensitive detector handle
virtual SensitiveDetector sensitiveDetector() const
{ return m_sensitive; }
/// Access to the sensitive type of the detector
virtual const std::string& sensitiveType() const
{ return m_sequence->sensitiveType(); }
/// Callback if the sequence should be accepted or filtered off
virtual G4bool Accept(const G4Step* step) const
{ return m_sequence->accept(step); }
Markus Frank
committed
/// Method invoked at the begining of each event.
Markus Frank
committed
virtual void Initialize(G4HCofThisEvent* hce)
{ m_sequence->begin(hce); }
Markus Frank
committed
/// Method invoked at the end of each event.
Markus Frank
committed
virtual void EndOfEvent(G4HCofThisEvent* hce)
{ m_sequence->end(hce); }
/// Method for generating hit(s) using the information of G4Step object.
virtual G4bool ProcessHits(G4Step* step,G4TouchableHistory* hist)
{ return m_sequence->process(step,hist); }
/// G4VSensitiveDetector interface: Method invoked if the event was aborted.
virtual void clear()
{ m_sequence->clear(); }
/// Initialize the usage of a hit collection. Returns the collection identifier
virtual size_t defineCollection(const std::string& coll) {
Markus Frank
committed
if ( coll.empty() ) {
except("Geant4Sensitive: No collection defined for %s [Invalid name]",c_name());
}
collectionName.push_back(coll);
return collectionName.size()-1;
}
};
} // End namespace Simulation
} // End namespace DD4hep
#include "DDG4/Factories.h"
typedef DD4hep::Simulation::Geant4SensDet Geant4SensDet;
typedef DD4hep::Simulation::Geant4SensDet Geant4tracker;
typedef DD4hep::Simulation::Geant4SensDet Geant4calorimeter;
DECLARE_GEANT4SENSITIVEDETECTOR(Geant4SensDet)
DECLARE_GEANT4SENSITIVEDETECTOR(Geant4tracker)
DECLARE_GEANT4SENSITIVEDETECTOR(Geant4calorimeter)