DD4hep  1.31.0
Detector Description Toolkit for High Energy Physics
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Geant4SensDetAction.cpp
Go to the documentation of this file.
1 //==========================================================================
2 // AIDA Detector description implementation
3 //--------------------------------------------------------------------------
4 // Copyright (C) Organisation europeenne pour la Recherche nucleaire (CERN)
5 // All rights reserved.
6 //
7 // For the licensing terms see $DD4hepINSTALL/LICENSE.
8 // For the list of contributors see $DD4hepINSTALL/doc/CREDITS.
9 //
10 // Author : M.Frank
11 //
12 //==========================================================================
13 
14 // Framework include files
15 #include <DD4hep/Printout.h>
16 #include <DD4hep/Primitives.h>
17 #include <DD4hep/InstanceCount.h>
18 
19 #include <DDG4/Geant4Kernel.h>
20 #include <DDG4/Geant4Mapping.h>
21 #include <DDG4/Geant4StepHandler.h>
25 
26 // Geant4 include files
27 #include <G4Step.hh>
28 #include <G4SDManager.hh>
29 #include <G4VSensitiveDetector.hh>
30 
31 // C/C++ include files
32 #include <stdexcept>
33 
34 #include "G4OpticalParameters.hh"
35 #include "G4OpticalPhoton.hh"
36 
37 #ifdef DD4HEP_USE_GEANT4_UNITS
38 #define MM_2_CM 1.0
39 #else
40 #define MM_2_CM 0.1
41 #endif
42 
43 using namespace dd4hep::sim;
44 
45 #if 0
46 namespace {
47  Geant4ActionSD* _getSensitiveDetector(const std::string& name) {
48  G4SDManager* mgr = G4SDManager::GetSDMpointer();
49  G4VSensitiveDetector* sd = mgr->FindSensitiveDetector(name);
50  if (0 == sd) {
51  dd4hep::except("Geant4Sensitive", "DDG4: You requested to configure actions "
52  "for the sensitive detector %s,\nDDG4: which is not known to Geant4. "
53  "Are you sure you already converted the geometry?", name.c_str());
54  }
55  Geant4ActionSD* action_sd = dynamic_cast<Geant4ActionSD*>(sd);
56  if (0 == action_sd) {
57  throw dd4hep::except("Geant4Sensitive", "DDG4: You may only configure actions "
58  "for sensitive detectors of type Geant4ActionSD.\n"
59  "DDG4: The sensitive detector of %s is of type %s, which is incompatible.", name.c_str(),
60  typeName(typeid(*sd)).c_str());
61  }
62  return action_sd;
63  }
64 }
65 #endif
66 
68 Geant4ActionSD::Geant4ActionSD(const std::string& nam)
69  : Geant4Action(0, nam) {
71 }
72 
76 }
77 
79 Geant4Filter::Geant4Filter(Geant4Context* ctxt, const std::string& nam)
80  : Geant4Action(ctxt, nam) {
82 }
83 
87 }
88 
90 bool Geant4Filter::operator()(const G4Step*) const {
91  return true;
92 }
93 
96  except("The filter action %s does not support the GFLASH/FastSim interface for Geant4.", c_name());
97  return false;
98 }
99 
101 Geant4Sensitive::Geant4Sensitive(Geant4Context* ctxt, const std::string& nam, DetElement det, Detector& det_ref)
102  : Geant4Action(ctxt, nam), m_detDesc(det_ref), m_detector(det)
103 {
105  if (!det.isValid()) {
106  except("DDG4: Detector elemnt for %s is invalid.", nam.c_str());
107  }
108  declareProperty("HitCreationMode", m_hitCreationMode = SIMPLE_MODE);
113 }
114 
118  m_filters.clear();
120 }
121 
124  Geant4Filter* filter = dynamic_cast<Geant4Filter*>(action);
125  adopt(filter);
126 }
127 
130  if (filter) {
131  filter->addRef();
132  m_filters.add(filter);
133  return;
134  }
135  except("Attempt to add invalid sensitive filter!");
136 }
137 
140  Geant4Filter* filter = dynamic_cast<Geant4Filter*>(action);
141  adopt_front(filter);
142 }
143 
146  if (filter) {
147  filter->addRef();
148  m_filters.add_front(filter);
149  return;
150  }
151  except("Attempt to add invalid sensitive filter!");
152 }
153 
155 bool Geant4Sensitive::accept(const G4Step* step) const {
156  bool (Geant4Filter::*filter)(const G4Step*) const = &Geant4Filter::operator();
157  bool result = m_filters.filter(filter, step);
158  return result;
159 }
160 
163  bool (Geant4Filter::*filter)(const Geant4FastSimSpot*) const = &Geant4Filter::operator();
164  bool result = m_filters.filter(filter, spot);
165  return result;
166 }
167 
170  m_sensitiveDetector = sens_det;
171 }
172 
176  return *m_sensitiveDetector;
177  //m_sensitiveDetector = _getSensitiveDetector(m_detector.name());
178  //if ( m_sensitiveDetector ) return *m_sensitiveDetector;
179  except("DDG4: The sensitive detector for action %s was not properly configured.", name().c_str());
180  throw std::runtime_error("Geant4Sensitive::detector");
181 }
182 
185  return *m_sequence;
186 }
187 
190  return m_detDesc;
191 }
192 
194 const std::string& Geant4Sensitive::hitCollectionName(std::size_t which) const {
195  return sequence().hitCollectionName(which);
196 }
197 
200  return sequence().collection(which);
201 }
202 
205  return sequence().collectionByID(id);
206 }
207 
210 }
211 
213 void Geant4Sensitive::begin(G4HCofThisEvent* /* HCE */) {
214 }
215 
217 void Geant4Sensitive::end(G4HCofThisEvent* /* HCE */) {
218 }
219 
221 bool Geant4Sensitive::process(const G4Step* /* step */, G4TouchableHistory* /* history */) {
222  return false;
223 }
224 
226 bool Geant4Sensitive::processFastSim(const Geant4FastSimSpot* /* spot */, G4TouchableHistory* /* history */) {
227  except("The sensitive action %s does not support the GFLASH/FastSim interface for Geant4.", c_name());
228  return false;
229 }
230 
232 void Geant4Sensitive::clear(G4HCofThisEvent* /* HCE */) {
233 }
234 
236 void Geant4Sensitive::mark(const G4Track* track) const {
238  if ( truth ) truth->mark(track);
239 }
240 
242 void Geant4Sensitive::mark(const G4Step* step) const {
244  if ( truth ) truth->mark(step);
245 }
246 
248 long long int Geant4Sensitive::volumeID(const G4Step* step) {
249  Geant4StepHandler stepH(step);
251  VolumeID id = volMgr.volumeID(stepH.preTouchable());
252  return id;
253 }
254 
256 long long int Geant4Sensitive::volumeID(const G4VTouchable* touchable) {
258  VolumeID id = volMgr.volumeID(touchable);
259  return id;
260 }
261 
263 long long int Geant4Sensitive::cellID(const G4Step* step) {
264  Geant4StepHandler h(step);
266  bool UsePostStepOnly = G4OpticalParameters::Instance() && G4OpticalParameters::Instance()->GetBoundaryInvokeSD() && (step->GetTrack()->GetDefinition() == G4OpticalPhoton::Definition());
267  VolumeID volID = volMgr.volumeID(UsePostStepOnly? h.postTouchable() : h.preTouchable());
268  if ( m_segmentation.isValid() ) {
269  std::exception_ptr eptr;
270  G4ThreeVector global = UsePostStepOnly? h.postPosG4() : 0.5 * (h.prePosG4()+h.postPosG4());
271  G4ThreeVector local = UsePostStepOnly? h.postTouchable()->GetHistory()->GetTopTransform().TransformPoint(global) :
272  h.preTouchable()->GetHistory()->GetTopTransform().TransformPoint(global);
273  Position loc(local.x()*MM_2_CM, local.y()*MM_2_CM, local.z()*MM_2_CM);
274  Position glob(global.x()*MM_2_CM, global.y()*MM_2_CM, global.z()*MM_2_CM);
275  try {
276  VolumeID cID = m_segmentation.cellID(loc, glob, volID);
277  return cID;
278  }
279  catch(const std::exception& e) {
280  eptr = std::current_exception();
281  error("cellID: failed to access segmentation for VolumeID: %016lX [%ld] [%s]", volID, volID, e.what());
282  error("....... G4-local: (%f, %f, %f) G4-global: (%f, %f, %f)",
283  local.x(), local.y(), local.z(), global.x(), global.y(), global.z());
284  error("....... TGeo-local: (%f, %f, %f) TGeo-global: (%f, %f, %f)",
285  loc.x(), loc.y(), loc.z(), glob.x(), glob.y(), glob.z());
286  error("....... Pre-step: %s SD: %s", h.volName(h.pre), h.sdName(h.pre).c_str());
287  if ( h.post )
288  error("....... Post-step: %s SD: %s", h.volName(h.post), h.sdName(h.post).c_str());
289  std::rethrow_exception(std::move(eptr));
290  }
291  }
292  return volID;
293 }
294 
296 long long int Geant4Sensitive::cellID(const G4VTouchable* touchable, const G4ThreeVector& global) {
298  VolumeID volID = volMgr.volumeID(touchable);
299  if ( m_segmentation.isValid() ) {
300  std::exception_ptr eptr;
301  G4ThreeVector local = touchable->GetHistory()->GetTopTransform().TransformPoint(global);
302  Position loc (local.x()*MM_2_CM, local.y()*MM_2_CM, local.z()*MM_2_CM);
303  Position glob(global.x()*MM_2_CM, global.y()*MM_2_CM, global.z()*MM_2_CM);
304  try {
305  VolumeID cID = m_segmentation.cellID(loc, glob, volID);
306  return cID;
307  }
308  catch(const std::exception& e) {
309  auto* pvol = touchable->GetVolume();
310  auto* vol = pvol->GetLogicalVolume();
311  auto* sd = vol->GetSensitiveDetector();
312  eptr = std::current_exception();
313  error("cellID: failed to access segmentation for VolumeID: %016lX [%ld] [%s]", volID, volID, e.what());
314  error("....... G4-local: (%f, %f, %f) G4-global: (%f, %f, %f)",
315  local.x(), local.y(), local.z(), global.x(), global.y(), global.z());
316  error("....... TGeo-local: (%f, %f, %f) TGeo-global: (%f, %f, %f)",
317  loc.x(), loc.y(), loc.z(), glob.x(), glob.y(), glob.z());
318  error("....... Touchable: %s SD: %s", vol->GetName().c_str(), sd ? sd->GetName().c_str() : "???");
319  std::rethrow_exception(std::move(eptr));
320  }
321  }
322  return volID;
323 }
324 
327  : Geant4Action(ctxt, nam), m_hce(0), m_detector(0)
328 {
329  m_needsControl = true;
330  context()->sensitiveActions().insert(name(), this);
335 }
336 
341  m_filters.clear();
342  m_actors.clear();
344 }
345 
348  m_context = ctxt;
349  m_actors.updateContext(ctxt);
350  m_filters.updateContext(ctxt);
351 }
352 
355  Geant4Filter* filter = dynamic_cast<Geant4Filter*>(action);
356  adopt(filter);
357 }
358 
361  if (sensitive) {
362  sensitive->addRef();
363  m_actors.add(sensitive);
364  return;
365  }
366  except("Attempt to add invalid sensitive actor!");
367 }
368 
371  if (filter) {
372  filter->addRef();
373  m_filters.add(filter);
374  return;
375  }
376  except("Attempt to add invalid sensitive filter!");
377 }
378 
380 std::size_t Geant4SensDetActionSequence::defineCollection(Geant4Sensitive* owner, const std::string& collection_name, create_t func) {
381  m_collections.emplace_back(collection_name, make_pair(owner,func));
382  return m_collections.size() - 1;
383 }
384 
386 std::size_t Geant4SensDetActionSequence::Geant4SensDetActionSequence::defineCollections(Geant4ActionSD* sens_det) {
387  std::size_t count = 0;
388  m_detector = sens_det;
389  m_actors(&Geant4Sensitive::setDetector, sens_det);
391  for (HitCollections::const_iterator i = m_collections.begin(); i != m_collections.end(); ++i) {
392  sens_det->defineCollection((*i).first);
393  ++count;
394  }
395  return count;
396 }
397 
399 const std::string& Geant4SensDetActionSequence::hitCollectionName(std::size_t which) const {
400  if (which < m_collections.size()) {
401  return m_collections[which].first;
402  }
403  static std::string blank = "";
404  except("The collection name index for subdetector %s is out of range!", c_name());
405  return blank;
406 }
407 
410  if (which < m_collections.size()) {
411  int hc_id = m_detector->GetCollectionID(which);
412  Geant4HitCollection* c = (Geant4HitCollection*) m_hce->GetHC(hc_id);
413  if (c)
414  return c;
415  except("The collection index for subdetector %s is wrong!", c_name());
416  }
417  except("The collection name index for subdetector %s is out of range!", c_name());
418  return 0;
419 }
420 
423  Geant4HitCollection* c = (Geant4HitCollection*) m_hce->GetHC(id);
424  if (c)
425  return c;
426  except("The collection index for subdetector %s is wrong!", c_name());
427  return 0;
428 }
429 
431 bool Geant4SensDetActionSequence::accept(const G4Step* step) const {
432  bool (Geant4Filter::*filter)(const G4Step*) const = &Geant4Filter::operator();
433  bool result = m_filters.filter(filter, step);
434  return result;
435 }
436 
439  bool (Geant4Filter::*filter)(const Geant4FastSimSpot*) const = &Geant4Filter::operator();
440  bool result = m_filters.filter(filter, spot);
441  return result;
442 }
443 
445 bool Geant4SensDetActionSequence::process(const G4Step* step, G4TouchableHistory* history) {
446  bool result = false;
447  for (Geant4Sensitive* sensitive : m_actors) {
448  if ( sensitive->accept(step) )
449  result |= sensitive->process(step, history);
450  }
451  m_process(step, history);
452  return result;
453 }
454 
456 bool Geant4SensDetActionSequence::processFastSim(const Geant4FastSimSpot* spot, G4TouchableHistory* history) {
457  bool result = false;
458  for (Geant4Sensitive* sensitive : m_actors) {
459  if ( sensitive->accept(spot) )
460  result |= sensitive->processFastSim(spot, history);
461  }
462  m_process(spot, history);
463  return result;
464 }
465 
470 void Geant4SensDetActionSequence::begin(G4HCofThisEvent* hce) {
471  m_hce = hce;
472  for (std::size_t count = 0; count < m_collections.size(); ++count) {
473  const HitCollection& cr = m_collections[count];
474  Geant4HitCollection* col = (*cr.second.second)(name(), cr.first, cr.second.first);
475  int id = m_detector->GetCollectionID(count);
476  m_hce->AddHitsCollection(id, col);
477  }
479  m_begin (m_hce);
480 }
481 
483 void Geant4SensDetActionSequence::end(G4HCofThisEvent* hce) {
484  m_end(hce);
486  // G4HCofThisEvent must be availible until end-event. m_hce = 0;
487 }
488 
490 
496  m_clear (m_hce);
498 }
499 
502  detail::releaseObjects(m_sequences);
503  m_sequences.clear();
504 }
505 
508  std::string n = "SD_Seq_" + nam;
509  Members::const_iterator i = m_sequences.find(n);
510  if (i != m_sequences.end())
511  return (*i).second;
512  except("Attempt to access undefined SensDetActionSequence: %s ", nam.c_str());
513  return nullptr;
514 }
515 
518  std::string nam = "SD_Seq_" + name;
519  Members::const_iterator i = m_sequences.find(nam);
520  if (i != m_sequences.end())
521  return (*i).second;
522  return 0;
523 }
524 
526 void Geant4SensDetSequences::insert(const std::string& name, Geant4SensDetActionSequence* seq) {
527  if (seq) {
528  std::string nam = "SD_Seq_" + name;
529  seq->addRef();
530  m_sequences[nam] = seq;
531  return;
532  }
533  except("Attempt to add invalid sensitive sequence with name:%s", name.c_str());
534 }
535 
538  m_sequences.clear();
539 }
dd4hep::sim::Geant4Sensitive::m_sequence
Geant4SensDetActionSequence * m_sequence
Reference to the containing action sequence.
Definition: Geant4SensDetAction.h:133
Geant4MonteCarloTruth.h
dd4hep::sim::Geant4SensDetActionSequence::m_sensitive
SensitiveDetector m_sensitive
Reference to the sensitive detector element.
Definition: Geant4SensDetAction.h:342
dd4hep::sim::Geant4Sensitive::adopt
void adopt(Geant4Filter *filter)
Add an actor responding to all callbacks. Sequence takes ownership.
Definition: Geant4SensDetAction.cpp:129
dd4hep::sim::Geant4Sensitive::defineCollections
virtual void defineCollections()
Define collections created by this sensitivie action object.
Definition: Geant4SensDetAction.cpp:209
dd4hep::sim::Geant4Action::m_needsControl
bool m_needsControl
Default property: Flag to create control instance.
Definition: Geant4Action.h:123
dd4hep::sim::Geant4Context::detectorDescription
Detector & detectorDescription() const
Access to detector description.
Definition: Geant4Context.cpp:91
dd4hep::sim::Geant4SensDetSequences::insert
void insert(const std::string &name, Geant4SensDetActionSequence *seq)
Insert sequence member.
Definition: Geant4SensDetAction.cpp:526
Geant4Mapping.h
dd4hep::sim::Geant4SensDetActionSequence::m_end
CallbackSequence m_end
Callback sequence for event finalization action.
Definition: Geant4SensDetAction.h:329
dd4hep::sim::Geant4SensDetActionSequence::processFastSim
virtual bool processFastSim(const Geant4FastSimSpot *spot, G4TouchableHistory *history)
GFLASH/FastSim interface: Method for generating hit(s) using the information of the fast simulation s...
Definition: Geant4SensDetAction.cpp:456
dd4hep::sim::Geant4ActionContainer::sensitiveAction
Geant4SensDetActionSequence * sensitiveAction(const std::string &name)
Access to the sensitive detector action from the actioncontainer object.
Definition: Geant4ActionContainer.cpp:139
dd4hep::sim::Geant4SensDetActionSequence::m_actors
Actors< Geant4Sensitive > m_actors
The list of sensitive detector objects.
Definition: Geant4SensDetAction.h:335
dd4hep::sim::Geant4ActionSD::~Geant4ActionSD
virtual ~Geant4ActionSD()
Default destructor.
Definition: Geant4SensDetAction.cpp:74
dd4hep::exception
void exception(const std::string &src, const std::string &msg)
Definition: RootDictionary.h:69
dd4hep::sim::Geant4Sensitive::m_filters
Actors< Geant4Filter > m_filters
The list of sensitive detector filter objects.
Definition: Geant4SensDetAction.h:154
dd4hep::sim::Geant4StepHandler::pre
G4StepPoint * pre
Definition: Geant4StepHandler.h:49
dd4hep::sim::Geant4Sensitive::detector
Geant4ActionSD & detector() const
Access to the sensitive detector object.
Definition: Geant4SensDetAction.cpp:174
Geant4VolumeManager.h
dd4hep::sim::Geant4Sensitive::clear
virtual void clear(G4HCofThisEvent *hce)
G4VSensitiveDetector interface: Method invoked if the event was aborted.
Definition: Geant4SensDetAction.cpp:232
dd4hep::sim::Geant4SensDetActionSequence::clear
virtual void clear()
G4VSensitiveDetector interface: Method invoked if the event was aborted.
Definition: Geant4SensDetAction.cpp:495
dd4hep::sim::Geant4SensDetSequences::m_sequences
Members m_sequences
Definition: Geant4SensDetAction.h:470
dd4hep::sim::Geant4SensDetSequences::clear
void clear()
Clear the sequence list.
Definition: Geant4SensDetAction.cpp:537
dd4hep::sim::Geant4Action::m_context
Geant4Context * m_context
Reference to the Geant4 context.
Definition: Geant4Action.h:116
dd4hep::sim::Geant4StepHandler::volName
const char * volName(const G4StepPoint *p, const char *undefined="") const
Definition: Geant4StepHandler.h:147
Geant4SensDetAction.h
dd4hep::sim::Geant4HitCollection
Generic hit container class using Geant4HitWrapper objects.
Definition: Geant4HitCollection.h:201
dd4hep::sim::Geant4Sensitive::process
virtual bool process(const G4Step *step, G4TouchableHistory *history)
G4VSensitiveDetector interface: Method for generating hit(s) using the information of G4Step object.
Definition: Geant4SensDetAction.cpp:221
dd4hep::sim::Geant4Sensitive::Geant4Sensitive
Geant4Sensitive(Geant4Context *context, const std::string &name, DetElement det, Detector &description)
Constructor. The sensitive detector element is identified by the detector name.
Definition: Geant4SensDetAction.cpp:101
dd4hep::Handle::isValid
bool isValid() const
Check the validity of the object held by the handle.
Definition: Handle.h:126
dd4hep::sim::Geant4SensDetActionSequence::adopt
void adopt(Geant4Sensitive *sensitive)
Add an actor responding to all callbacks. Sequence takes ownership.
Definition: Geant4SensDetAction.cpp:360
dd4hep::InstanceCount::increment
static void increment(T *)
Increment count according to type information.
Definition: InstanceCount.h:98
dd4hep::sim::Geant4Context::event
Geant4Event & event() const
Access the geant4 event – valid only between BeginEvent() and EndEvent()!
Definition: Geant4Context.cpp:84
Geant4StepHandler.h
dd4hep::sim::Geant4Mapping::instance
static Geant4Mapping & instance()
Possibility to define a singleton instance.
Definition: Geant4Mapping.cpp:35
dd4hep::sim::Geant4Filter::~Geant4Filter
virtual ~Geant4Filter()
Standard destructor.
Definition: Geant4SensDetAction.cpp:85
dd4hep::Handle::name
const char * name() const
Access the object name (or "" if not supported by the object)
dd4hep::sim::Geant4StepHandler::postTouchable
const G4VTouchable * postTouchable() const
Definition: Geant4StepHandler.h:144
dd4hep::sim::Geant4Context::sensitiveActions
Geant4SensDetSequences & sensitiveActions() const
Access to the sensitive detector sequences from the kernel object.
Definition: Geant4Context.cpp:143
dd4hep::sim::Geant4StepHandler::prePosG4
const G4ThreeVector & prePosG4() const
Returns the pre-step position as a G4ThreeVector.
Definition: Geant4StepHandler.h:89
dd4hep::sim::Geant4FastSimSpot
Spot definition for fast simulation and GFlash.
Definition: Geant4FastSimSpot.h:71
dd4hep::sim::Geant4Sensitive::volumeID
long long int volumeID(const G4Step *step)
Returns the volumeID of the sensitive volume corresponding to the step.
Definition: Geant4SensDetAction.cpp:248
dd4hep::sim::Geant4Sensitive::collection
Geant4HitCollection * collection(std::size_t which)
Retrieve the hits collection associated with this detector by its serial number.
Definition: Geant4SensDetAction.cpp:199
dd4hep::sim::Geant4Sensitive::~Geant4Sensitive
virtual ~Geant4Sensitive()
Standard destructor.
Definition: Geant4SensDetAction.cpp:116
dd4hep::sim::Geant4SensDetActionSequence::m_begin
CallbackSequence m_begin
Callback sequence for event initialization action.
Definition: Geant4SensDetAction.h:327
dd4hep::sim::Geant4StepHandler
Helper class to ease the extraction of information from a G4Step object.
Definition: Geant4StepHandler.h:46
dd4hep::sim::Geant4Event::extension
T * extension(bool alert=true)
Access to type safe extension object. Exception is thrown if the object is invalid.
Definition: Geant4Context.h:151
dd4hep::sim::Geant4Action::except
void except(const char *fmt,...) const
Support of exceptions: Print fatal message and throw runtime_error.
Definition: Geant4Action.cpp:256
dd4hep::sim::Geant4Sensitive::SIMPLE_MODE
@ SIMPLE_MODE
Definition: Geant4SensDetAction.h:124
dd4hep::sim::Geant4SensDetActionSequence::Geant4SensDetActionSequence
Geant4SensDetActionSequence(Geant4Context *context, const std::string &name)
Standard constructor.
Definition: Geant4SensDetAction.cpp:326
dd4hep::sim::Geant4StepHandler::post
G4StepPoint * post
Definition: Geant4StepHandler.h:50
dd4hep::sim::Geant4Sensitive::adoptFilter_front
void adoptFilter_front(Geant4Action *filter)
Add an actor responding to all callbacks to the sequence front. Sequence takes ownership.
Definition: Geant4SensDetAction.cpp:139
dd4hep::sim::Geant4VolumeManager::volumeID
VolumeID volumeID(const G4VTouchable *touchable) const
Access CELLID by Geant4 touchable object.
Definition: Geant4VolumeManager.cpp:337
dd4hep::sim::Geant4SensDetActionSequence::m_process
CallbackSequence m_process
Callback sequence for step processing.
Definition: Geant4SensDetAction.h:331
dd4hep::sim::Geant4SensDetSequences::~Geant4SensDetSequences
virtual ~Geant4SensDetSequences()
Default destructor.
Definition: Geant4SensDetAction.cpp:501
dd4hep::sim::Geant4SensDetActionSequence::m_filters
Actors< Geant4Filter > m_filters
The list of sensitive detector filter objects.
Definition: Geant4SensDetAction.h:337
dd4hep::sim::Geant4SensDetSequences::find
Geant4SensDetActionSequence * find(const std::string &name) const
Access sequence member by name.
Definition: Geant4SensDetAction.cpp:517
dd4hep::DetElement
Handle class describing a detector element.
Definition: DetElement.h:187
dd4hep::sim::Geant4Sensitive::mark
void mark(const G4Track *track) const
Mark the track to be kept for MC truth propagation during hit processing.
Definition: Geant4SensDetAction.cpp:236
dd4hep::sim::Geant4ActionSD::GetCollectionID
virtual G4int GetCollectionID(G4int i)=0
This is a utility method which returns the hits collection ID.
dd4hep::sim::Geant4Action::error
void error(const char *fmt,...) const
Support of error messages.
Definition: Geant4Action.cpp:231
MM_2_CM
#define MM_2_CM
Definition: Geant4SensDetAction.cpp:40
dd4hep::sim::Geant4Sensitive::m_readout
Readout m_readout
Reference to the readout structure.
Definition: Geant4SensDetAction.h:150
dd4hep::sim::Geant4Sensitive::setDetector
void setDetector(Geant4ActionSD *sens_det)
Access to the sensitive detector object.
Definition: Geant4SensDetAction.cpp:169
G4VSensitiveDetector
Class of the Geant4 toolkit. See http://www-geant4.kek.jp/Reference.
Definition: Geant4Classes.h:59
dd4hep::sim::Geant4SensDetActionSequence::m_hce
G4HCofThisEvent * m_hce
Geant4 hit collection context.
Definition: Geant4SensDetAction.h:325
dd4hep::sim::Geant4Sensitive::m_detDesc
Detector & m_detDesc
Reference to the detector description object.
Definition: Geant4SensDetAction.h:143
dd4hep::Detector::sensitiveDetector
virtual SensitiveDetector sensitiveDetector(const std::string &name) const =0
Retrieve a sensitive detector by its name from the detector description.
dd4hep::sim::Geant4Sensitive::accept
bool accept(const G4Step *step) const
Callback before hit processing starts. Invoke all filters.
Definition: Geant4SensDetAction.cpp:155
dd4hep::sim::Geant4SensDetActionSequence::end
virtual void end(G4HCofThisEvent *hce)
G4VSensitiveDetector interface: Method invoked at the end of each event.
Definition: Geant4SensDetAction.cpp:483
dd4hep::sim::Geant4Action::declareProperty
Geant4Action & declareProperty(const std::string &nam, T &val)
Declare property.
Definition: Geant4Action.h:366
dd4hep::InstanceCount::decrement
static void decrement(T *)
Decrement count according to type information.
Definition: InstanceCount.h:102
dd4hep::sim::Geant4MonteCarloTruth
Default Interface class to handle monte carlo truth records.
Definition: Geant4MonteCarloTruth.h:43
dd4hep::sim::Geant4SensDetActionSequence::m_detector
Geant4ActionSD * m_detector
Reference to G4 sensitive detector.
Definition: Geant4SensDetAction.h:344
dd4hep::sim::Geant4SensDetActionSequence::collection
Geant4HitCollection * collection(std::size_t which) const
Retrieve the hits collection associated with this detector by its serial number.
Definition: Geant4SensDetAction.cpp:409
dd4hep::sim::Geant4Sensitive::m_hitCreationMode
int m_hitCreationMode
Property: Hit creation mode. Maybe one of the enum HitCreationFlags.
Definition: Geant4SensDetAction.h:137
dd4hep::sim::Geant4Sensitive::begin
virtual void begin(G4HCofThisEvent *hce)
G4VSensitiveDetector interface: Method invoked at the begining of each event.
Definition: Geant4SensDetAction.cpp:213
dd4hep::sim::Geant4SensDetActionSequence::accept
bool accept(const G4Step *step) const
Callback before hit processing starts. Invoke all filters.
Definition: Geant4SensDetAction.cpp:431
dd4hep::sim::Geant4Action
Default base class for all Geant 4 actions and derivates thereof.
Definition: Geant4Action.h:113
dd4hep::sim::Geant4Action::release
long release()
Decrease reference count. Implicit destruction.
Definition: Geant4Action.cpp:76
dd4hep::sim::Geant4SensDetActionSequence::~Geant4SensDetActionSequence
virtual ~Geant4SensDetActionSequence()
Default destructor.
Definition: Geant4SensDetAction.cpp:338
dd4hep::sim::Geant4VolumeManager
The Geant4VolumeManager to facilitate optimized lookups of cell IDs from touchables.
Definition: Geant4VolumeManager.h:44
dd4hep::Readout::segmentation
Segmentation segmentation() const
Access segmentation structure.
Definition: Readout.cpp:134
dd4hep::Segmentation::cellID
CellID cellID(const Position &localPosition, const Position &globalPosition, const VolumeID &volumeID) const
determine the cell ID based on the local position
Definition: Segmentations.cpp:72
dd4hep::sim::Geant4Action::name
const std::string & name() const
Access name of the action.
Definition: Geant4Action.h:280
dd4hep::sim::Geant4SensDetActionSequence::updateContext
virtual void updateContext(Geant4Context *ctxt) override
Set or update client context.
Definition: Geant4SensDetAction.cpp:347
dd4hep::sim::Geant4Mapping::volumeManager
Geant4VolumeManager volumeManager() const
Access the volume manager.
Definition: Geant4Mapping.cpp:69
dd4hep::sim::Geant4SensDetActionSequence::m_sensitiveType
std::string m_sensitiveType
The true sensitive type of the detector.
Definition: Geant4SensDetAction.h:346
dd4hep::sim::Geant4Filter::Geant4Filter
Geant4Filter(Geant4Context *context, const std::string &name)
Standard constructor.
Definition: Geant4SensDetAction.cpp:79
dd4hep::sim::Geant4SensDetActionSequence::m_collections
HitCollections m_collections
Hit collection creators.
Definition: Geant4SensDetAction.h:340
dd4hep::sim::Geant4ActionSD
Interface class to access properties of the underlying Geant4 sensitive detector structure.
Definition: Geant4SensDetAction.h:61
dd4hep::sim::Geant4StepHandler::postPosG4
const G4ThreeVector & postPosG4() const
Returns the post-step position as a G4ThreeVector.
Definition: Geant4StepHandler.h:98
dd4hep::sim::Geant4SensDetActionSequence::hitCollectionName
const std::string & hitCollectionName(std::size_t which) const
Access HitCollection container names.
Definition: Geant4SensDetAction.cpp:399
dd4hep::SensitiveDetector::type
std::string type() const
Access the type of the sensitive detector.
Definition: DetElement.cpp:409
dd4hep::sim::Geant4Sensitive::m_sensitive
SensitiveDetector m_sensitive
Reference to the sensitive detector element.
Definition: Geant4SensDetAction.h:148
dd4hep::Position
ROOT::Math::XYZVector Position
Definition: Objects.h:80
Primitives.h
VolumeID
dd4hep::DDSegmentation::VolumeID VolumeID
Definition: SegmentationDictionary.h:50
dd4hep::sim::Geant4Action::addRef
long addRef()
Increase reference count.
Definition: Geant4Action.cpp:71
dd4hep::sim::Geant4SensDetActionSequence::collectionByID
Geant4HitCollection * collectionByID(std::size_t id) const
Retrieve the hits collection associated with this detector by its collection identifier.
Definition: Geant4SensDetAction.cpp:422
dd4hep::sim
Namespace for the Geant4 based simulation part of the AIDA detector description toolkit.
Definition: EDM4hepFileReader.cpp:41
dd4hep::sim::Geant4SensDetActionSequence::HitCollection
std::pair< std::string, std::pair< Geant4Sensitive *, create_t > > HitCollection
Definition: Geant4SensDetAction.h:320
dd4hep::sim::Geant4Context::kernel
Geant4Kernel & kernel() const
Access to the kernel object.
Definition: Geant4Context.h:233
dd4hep::sim::Geant4Action::c_name
const char * c_name() const
Access name of the action.
Definition: Geant4Action.h:284
dd4hep::sim::Geant4SensDetActionSequence
The sequencer to host Geant4 sensitive actions called if particles interact with sensitive elements.
Definition: Geant4SensDetAction.h:317
dd4hep::sim::Geant4Sensitive::cellID
long long int cellID(const G4Step *step)
Returns the cellID of the sensitive volume corresponding to the step.
Definition: Geant4SensDetAction.cpp:263
dd4hep::sim::Geant4Sensitive::m_detector
DetElement m_detector
Reference to the detector element describing this sensitive element.
Definition: Geant4SensDetAction.h:146
dd4hep::sim::Geant4SensDetActionSequence::adoptFilter
void adoptFilter(Geant4Action *filter)
Add an actor responding to all callbacks. Sequence takes ownership.
Definition: Geant4SensDetAction.cpp:354
dd4hep::sim::Geant4Sensitive::adoptFilter
void adoptFilter(Geant4Action *filter)
Add an actor responding to all callbacks. Sequence takes ownership.
Definition: Geant4SensDetAction.cpp:123
dd4hep::sim::Geant4Sensitive::processFastSim
virtual bool processFastSim(const Geant4FastSimSpot *spot, G4TouchableHistory *history)
GFLASH/FastSim interface: Method for generating hit(s) using the information of the fast simulation s...
Definition: Geant4SensDetAction.cpp:226
det
DetElement::Object * det
Definition: AlignmentsCalculator.cpp:66
dd4hep::SensitiveDetector::readout
Readout readout() const
Access readout structure of the sensitive detector.
Definition: DetElement.cpp:420
dd4hep::sim::Geant4Sensitive::hitCollectionName
const std::string & hitCollectionName(std::size_t which) const
Access HitCollection container names.
Definition: Geant4SensDetAction.cpp:194
dd4hep::sim::Geant4SensDetActionSequence::defineCollection
std::size_t defineCollection(Geant4Sensitive *owner, const std::string &name, create_t func)
Initialize the usage of a hit collection. Returns the collection identifier.
Definition: Geant4SensDetAction.cpp:380
dd4hep::sim::Geant4Filter
Base class to construct filters for Geant4 sensitive detectors.
Definition: Geant4SensDetAction.h:94
dd4hep::sim::Geant4StepHandler::sdName
std::string sdName(const G4StepPoint *p, const std::string &undefined="") const
Definition: Geant4StepHandler.h:168
dd4hep::Detector
The main interface to the dd4hep detector description package.
Definition: Detector.h:90
Geant4Kernel.h
dd4hep::sim::Geant4Sensitive
The base class for Geant4 sensitive detector actions implemented by users.
Definition: Geant4SensDetAction.h:121
dd4hep::sim::Geant4Sensitive::adopt_front
void adopt_front(Geant4Filter *filter)
Add an actor responding to all callbacks to the sequence front. Sequence takes ownership.
Definition: Geant4SensDetAction.cpp:145
dd4hep::sim::Geant4SensDetActionSequence::begin
virtual void begin(G4HCofThisEvent *hce)
G4VSensitiveDetector interface: Method invoked at the begining of each event.
Definition: Geant4SensDetAction.cpp:470
dd4hep::sim::Geant4Sensitive::m_segmentation
Segmentation m_segmentation
Reference to segmentation.
Definition: Geant4SensDetAction.h:152
dd4hep::sim::Geant4SensDetSequences::operator[]
Geant4SensDetActionSequence * operator[](const std::string &name) const
Access sequence member by name.
Definition: Geant4SensDetAction.cpp:507
dd4hep::sim::Geant4MonteCarloTruth::mark
virtual void mark(const G4Track *track)=0
Mark a Geant4 track to be kept for later MC truth analysis.
InstanceCount.h
dd4hep::sim::Geant4StepHandler::preTouchable
const G4VTouchable * preTouchable() const
Definition: Geant4StepHandler.h:141
dd4hep::sim::Geant4ActionSD::Geant4ActionSD
Geant4ActionSD(const std::string &name)
Standard action constructor.
Definition: Geant4SensDetAction.cpp:68
dd4hep::sim::Geant4Sensitive::m_sensitiveDetector
Geant4ActionSD * m_sensitiveDetector
Reference to G4 sensitive detector.
Definition: Geant4SensDetAction.h:131
Printout.h
dd4hep::sim::Geant4Sensitive::collectionByID
Geant4HitCollection * collectionByID(std::size_t id)
Retrieve the hits collection associated with this detector by its collection identifier.
Definition: Geant4SensDetAction.cpp:204
dd4hep::sim::Geant4Sensitive::end
virtual void end(G4HCofThisEvent *hce)
G4VSensitiveDetector interface: Method invoked at the end of each event.
Definition: Geant4SensDetAction.cpp:217
dd4hep::sim::Geant4Sensitive::sequence
Geant4SensDetActionSequence & sequence() const
Access to the hosting sequence.
Definition: Geant4SensDetAction.cpp:184
dd4hep::sim::Geant4SensDetActionSequence::m_clear
CallbackSequence m_clear
Callback sequence to invoke the event deletion.
Definition: Geant4SensDetAction.h:333
dd4hep::sim::Geant4Context
Generic context to extend user, run and event information.
Definition: Geant4Context.h:201
dd4hep::sim::Geant4SensDetActionSequence::process
virtual bool process(const G4Step *step, G4TouchableHistory *history)
G4VSensitiveDetector interface: Method for generating hit(s) using the information of G4Step object.
Definition: Geant4SensDetAction.cpp:445
dd4hep::sim::Geant4ActionSD::defineCollection
virtual std::size_t defineCollection(const std::string &name)=0
Initialize the usage of a hit collection. Returns the collection identifier.
dd4hep::sim::Geant4Action::context
Geant4Context * context() const
Access the context.
Definition: Geant4Action.h:270
dd4hep::sim::Geant4Filter::operator()
virtual bool operator()(const G4Step *step) const
Filter action. Return true if hits should be processed. Default returns true.
Definition: Geant4SensDetAction.cpp:90
dd4hep::sim::Geant4Sensitive::detectorDescription
Detector & detectorDescription() const
Access the detector desciption object.
Definition: Geant4SensDetAction.cpp:189