Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-22 09:36:49

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