Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-22 09:36:48

0001 //==========================================================================
0002 //  AIDA Detector description implementation 
0003 //--------------------------------------------------------------------------
0004 // Copyright (C) Organisation europeenne pour la Recherche nucleaire (CERN)
0005 // All rights reserved.
0006 //
0007 // For the licensing terms see $DD4hepINSTALL/LICENSE.
0008 // For the list of contributors see $DD4hepINSTALL/doc/CREDITS.
0009 //
0010 //==========================================================================
0011 /*
0012  * CartesianGrid.cpp
0013  *
0014  *  Created on: Jun 28, 2013
0015  *      Author: Christian Grefe, CERN
0016  */
0017 
0018 #include <DDSegmentation/CartesianGrid.h>
0019 
0020 namespace dd4hep {
0021   namespace DDSegmentation {
0022 
0023     /// Default constructor used by derived classes passing the encoding string
0024     CartesianGrid::CartesianGrid(const std::string& cellEncoding) :
0025       Segmentation(cellEncoding) {
0026     }
0027 
0028     /// Default constructor used by derived classes passing an existing decoder
0029     CartesianGrid::CartesianGrid(const BitFieldCoder* decode) : Segmentation(decode) {
0030     }
0031 
0032     /// Destructor
0033     CartesianGrid::~CartesianGrid() {
0034     }
0035 
0036   } /* namespace DDSegmentation */
0037 } /* namespace dd4hep */