Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:13:36

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 /*
0013  * CartesianGrid.h
0014  *
0015  *  Created on: Jun 28, 2013
0016  *      Author: Christian Grefe, CERN
0017  */
0018 
0019 #ifndef DDSEGMENTATION_CARTESIANGRID_H
0020 #define DDSEGMENTATION_CARTESIANGRID_H
0021 
0022 #include <DDSegmentation/Segmentation.h>
0023 
0024 namespace dd4hep {
0025   namespace DDSegmentation {
0026 
0027     /// Segmentation base class describing cartesian grid segmentation
0028     class CartesianGrid: public Segmentation {
0029     public:
0030       /// Destructor
0031       virtual ~CartesianGrid();
0032     protected:
0033       /// Default constructor used by derived classes passing the encoding string
0034       CartesianGrid(const std::string& cellEncoding = "");
0035       /// Default constructor used by derived classes passing an existing decoder
0036       CartesianGrid(const BitFieldCoder* decoder);
0037     };
0038 
0039   } /* namespace DDSegmentation */
0040 } /* namespace dd4hep */
0041 #endif // DDSEGMENTATION_CARTESIANGRID_H