|
||||
File indexing completed on 2025-01-18 09:13:37
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 * PolarGrid.h 0014 * 0015 * Created on: Sept 16, 2014 0016 * Author: Marko Petric 0017 */ 0018 0019 #ifndef DDSEGMENTATION_POLARGRID_H 0020 #define DDSEGMENTATION_POLARGRID_H 0021 0022 #include <DDSegmentation/Segmentation.h> 0023 0024 namespace dd4hep { 0025 namespace DDSegmentation { 0026 0027 /// Segmentation base class for polar grids 0028 class PolarGrid: public Segmentation { 0029 public: 0030 /// Destructor 0031 virtual ~PolarGrid(); 0032 protected: 0033 /// Default constructor used by derived classes passing the encoding string 0034 PolarGrid(const std::string& cellEncoding = ""); 0035 /// Default constructor used by derived classes passing an existing decoder 0036 PolarGrid(const BitFieldCoder* decoder); 0037 }; 0038 0039 } /* namespace DDSegmentation */ 0040 } /* namespace dd4hep */ 0041 #endif // DDSEGMENTATION_POLARGRID_H
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |