Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-07-05 08:13:41

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 //  Created: Jun 28, 2013
0011 //  Author:  Christian Grefe, CERN
0012 //
0013 //==========================================================================
0014 
0015 /// Framework include files
0016 #include <DDSegmentation/CartesianGrid.h>
0017 
0018 namespace dd4hep {
0019   
0020   namespace DDSegmentation {
0021 
0022     /// Default constructor used by derived classes passing the encoding string
0023     CartesianGrid::CartesianGrid(const std::string& cellEncoding) :
0024       Segmentation(cellEncoding) {
0025     }
0026 
0027     /// Default constructor used by derived classes passing an existing decoder
0028     CartesianGrid::CartesianGrid(const BitFieldCoder* decode) : Segmentation(decode) {
0029     }
0030 
0031     /// Destructor
0032     CartesianGrid::~CartesianGrid() {
0033     }
0034 
0035   } /* namespace DDSegmentation */
0036 } /* namespace dd4hep */