Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-07-15 08:14: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 //  Created: Jun 28, 2013
0011 //  Author:  Christian Grefe, CERN
0012 //           David Blyth, ANL
0013 //
0014 //==========================================================================
0015 
0016 /// Framework include files
0017 #include <DDSegmentation/CartesianStrip.h>
0018 
0019 namespace dd4hep {
0020 namespace DDSegmentation {
0021 /// Default constructor used by derived classes passing the encoding string
0022 CartesianStrip::CartesianStrip(const std::string& cellEncoding) : Segmentation(cellEncoding) {}
0023 
0024 /// Default constructor used by derived classes passing an existing decoder
0025 CartesianStrip::CartesianStrip(const BitFieldCoder* decode) : Segmentation(decode) {}
0026 
0027 /// Destructor
0028 CartesianStrip::~CartesianStrip() {}
0029 } /* namespace DDSegmentation */
0030 } /* namespace dd4hep */