Skip to content
Snippets Groups Projects
Segmentations.cpp 6.52 KiB
Newer Older
//==========================================================================
//  AIDA Detector description implementation for LCD
//--------------------------------------------------------------------------
Markus Frank's avatar
Markus Frank committed
// Copyright (C) Organisation europeenne pour la Recherche nucleaire (CERN)
// For the licensing terms see $DD4hepINSTALL/LICENSE.
// For the list of contributors see $DD4hepINSTALL/doc/CREDITS.
// Author     : M.Frank
//
//==========================================================================
#include "DD4hep/Handle.inl"
#include <stdexcept>
using namespace DD4hep;
using DD4hep::DDSegmentation::Parameter;
using DD4hep::DDSegmentation::Parameters;
using DD4hep::DDSegmentation::SegmentationParameter;
Markus Frank's avatar
Markus Frank committed
DD4HEP_INSTANTIATE_HANDLE_UNNAMED(SegmentationObject);

Markus Frank's avatar
Markus Frank committed
SegmentationObject::SegmentationObject(BaseSegmentation* s)
  : magic(magic_word()), useForHitPosition(0),
    detector(0), sensitive(0), segmentation(s)
{
Markus Frank's avatar
Markus Frank committed
SegmentationObject::~SegmentationObject() {
/// determine the local position based on the cell ID
DDSegmentation::Vector3D SegmentationObject::position(const long64& cell) const {
  return segmentation->position(cell);
}

/// determine the cell ID based on the local position
long64 SegmentationObject::cellID(const DDSegmentation::Vector3D& localPosition,
                                  const DDSegmentation::Vector3D& globalPosition,
                                  const long64& volID) const {
  return segmentation->cellID(localPosition, globalPosition, volID);
Markus Frank's avatar
Markus Frank committed
string SegmentationObject::fieldDescription() const {
  return segmentation->fieldDescription();
Markus Frank's avatar
Markus Frank committed
const string& SegmentationObject::name() const {
  return segmentation->name();
Markus Frank's avatar
Markus Frank committed
void SegmentationObject::setName(const string& value) {
  segmentation->setName(value);
Markus Frank's avatar
Markus Frank committed
const string& SegmentationObject::type() const {
  return segmentation->type();
/// Access the description of the segmentation
Markus Frank's avatar
Markus Frank committed
const string& SegmentationObject::description() const {
  return segmentation->description();
Markus Frank's avatar
Markus Frank committed
BitField64* SegmentationObject::decoder() {
  return segmentation->decoder();
void SegmentationObject::setDecoder(BitField64* ptr_decoder) {
  segmentation->setDecoder(ptr_decoder);
Markus Frank's avatar
Markus Frank committed
Parameter SegmentationObject::parameter(const string& parameterName) const {
  return segmentation->parameter(parameterName);
Markus Frank's avatar
Markus Frank committed
Parameters SegmentationObject::parameters() const {
  return segmentation->parameters();
/// Set all parameters from an existing set of parameters
void SegmentationObject::setParameters(const Parameters& params) {
  segmentation->setParameters(params);
}

/// Constructor to used when creating a new object
Segmentation::Segmentation(const string& typ, const string& nam) :
  BaseSegmentation* s = DDSegmentation::SegmentationFactory::instance()->create(typ);
    assign(new Object(s), nam, "");
    if ( !nam.empty() ) s->setName(nam);
    throw runtime_error("FAILED to create segmentation: " + typ + ". Missing factory method for: " + typ + "!");
/// Accessor: Segmentation type
std::string Segmentation::type() const {
bool Segmentation::useForHitPosition() const {
  return data<Object>()->useForHitPosition != 0;
/// Access to the parameters
Parameters Segmentation::parameters() const {
  return data<Object>()->parameters();
/// Access segmentation object
DDSegmentation::Segmentation* Segmentation::segmentation() const {
  return data<Object>()->segmentation;
/// determine the local position based on the cell ID
Position Segmentation::position(const long64& cell) const {
  return Position(segmentation()->position(cell));
/// determine the cell ID based on the local position
long64 Segmentation::cellID(const Position& localPosition, const Position& globalPosition, const long64& volID) const {
  return segmentation()->cellID(localPosition, globalPosition, volID);

/// Namespace for the AIDA detector description toolkit
namespace DD4hep {
  /// Namespace for the geometry part of the AIDA detector description toolkit
  namespace Geometry {

    /// Access the concrete underlying segmentation implementation from DDSegmentation
    template <typename T> T*
    Segmentation::get(const Object* obj)   {
      if ( obj )  {
        DDSegmentation::Segmentation* seg = obj->segmentation;
        T* dd_seg = dynamic_cast<T*>(seg);
        if ( dd_seg )  {
          return dd_seg;
        }
        except("CartesianGridXY",
               "Cannot convert segmentation:%s to CartesianGridXY.",
Markus Frank's avatar
Markus Frank committed
               obj->name().c_str());
      }
      return 0;
    }
  } /* End namespace Geometry              */
} /* End namespace DD4hep                */

#define IMPLEMENT_SEGMENTATION_HANDLE(X)                                \
  DD4HEP_INSTANTIATE_HANDLE_UNNAMED(DDSegmentation::X);                 \
  namespace DD4hep { namespace Geometry {                               \
      template DDSegmentation::X*                                       \
      Segmentation::get<DDSegmentation::X>(const Object* obj); }}

#include "DDSegmentation/CartesianGridXY.h"
IMPLEMENT_SEGMENTATION_HANDLE(CartesianGridXY)

#include "DDSegmentation/CartesianGridXZ.h"
IMPLEMENT_SEGMENTATION_HANDLE(CartesianGridXZ)

#include "DDSegmentation/CartesianGridYZ.h"
IMPLEMENT_SEGMENTATION_HANDLE(CartesianGridYZ)

#include "DDSegmentation/CartesianGridXYZ.h"
IMPLEMENT_SEGMENTATION_HANDLE(CartesianGridXYZ)

#include "DDSegmentation/TiledLayerGridXY.h"
IMPLEMENT_SEGMENTATION_HANDLE(TiledLayerGridXY)

#include "DDSegmentation/MegatileLayerGridXY.h"
IMPLEMENT_SEGMENTATION_HANDLE(MegatileLayerGridXY)

#include "DDSegmentation/WaferGridXY.h"
IMPLEMENT_SEGMENTATION_HANDLE(WaferGridXY)

#include "DDSegmentation/PolarGridRPhi.h"
IMPLEMENT_SEGMENTATION_HANDLE(PolarGridRPhi)

#include "DDSegmentation/PolarGridRPhi2.h"
IMPLEMENT_SEGMENTATION_HANDLE(PolarGridRPhi2)

#include "DDSegmentation/ProjectiveCylinder.h"
IMPLEMENT_SEGMENTATION_HANDLE(ProjectiveCylinder)