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 "DDG4/Geant4TouchableHandler.h"
#include "DDG4/Geant4GeometryInfo.h"
#include "G4Step.hh"
#include "G4VTouchable.hh"
// C/C++ include files
#include <stdexcept>
using namespace DD4hep::Simulation;
/// Default constructor. Takes the step's pre-touchable
Geant4TouchableHandler::Geant4TouchableHandler(const G4Step* step, bool use_post_step_point) {
const G4StepPoint* p = use_post_step_point ? step->GetPostStepPoint() : step->GetPreStepPoint();
touchable = p->GetTouchable();
}
/// Default constructor. Takes the step's pre-touchable
Geant4TouchableHandler::Geant4TouchableHandler(const G4Step* step) {
touchable = step->GetPreStepPoint()->GetTouchable();
}
/// Touchable history depth
int Geant4TouchableHandler::depth() const {
return touchable->GetHistoryDepth();
}
/// Helper: Generate placement path from touchable object
Geant4TouchableHandler::Geant4PlacementPath Geant4TouchableHandler::placementPath(bool exception) const {
Markus Frank
committed
Geant4PlacementPath path_val;
if ( touchable ) {
int i, n=touchable->GetHistoryDepth();
Markus Frank
committed
path_val.reserve(n);
for (i=0; i < n; ++i) {
G4VPhysicalVolume* pv = touchable->GetVolume(i);
Markus Frank
committed
path_val.push_back(pv);
Markus Frank
committed
return path_val;
}
if ( exception ) {
throw std::runtime_error("Attempt to access invalid G4 touchable object.");
}
Markus Frank
committed
return path_val;
}
/// Helper: Access the placement path of a Geant4 touchable object as a string
std::string Geant4TouchableHandler::path() const {
return Geant4GeometryMaps::placementPath(this->placementPath());
}