Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-07-06 08:34:34

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