|
||||
File indexing completed on 2025-01-18 09:14:42
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 * PolyhedralBarrelCalorimeter.h 0013 * 0014 * Created on: May 19, 2014 0015 * Author: Nikiforos Nikiforou, CERN 0016 */ 0017 0018 #ifndef EXAMPLES_CLIENTTESTS_SRC_SECTORBARRELCALORIMETER_H 0019 #define EXAMPLES_CLIENTTESTS_SRC_SECTORBARRELCALORIMETER_H 0020 0021 #include "BarrelDetector.h" 0022 #include "PolyhedralCalorimeter.h" 0023 0024 namespace dd4hep { 0025 namespace detail { 0026 0027 class SectorBarrelCalorimeter: public BarrelDetector, public PolyhedralCalorimeter { 0028 public: 0029 SectorBarrelCalorimeter(const DetElement& e) : DetElement(e), BarrelDetector(e), PolyhedralCalorimeter(e) {} 0030 virtual ~SectorBarrelCalorimeter() {} 0031 }; 0032 0033 } /* namespace detail */ 0034 } /* namespace dd4hep */ 0035 #endif // EXAMPLES_CLIENTTESTS_SRC_SECTORBARRELCALORIMETER_H
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |