Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:55:26

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