CMS 3D CMS Logo

CMSSW_4_4_3_patch1/src/RecoCaloTools/Navigation/interface/EcalBarrelNavigator.h

Go to the documentation of this file.
00001 #ifndef RECOCALOTOOLS_NAVIGATION_ECALBARRELNAVIGATOR_H
00002 #define RECOCALOTOOLS_NAVIGATION_ECALBARRELNAVIGATOR_H 1
00003 
00004 #include "DataFormats/EcalDetId/interface/EBDetId.h"
00005 #include "RecoCaloTools/Navigation/interface/CaloNavigator.h"
00006 
00007 class EcalBarrelNavigator : public CaloNavigator<EBDetId> 
00008 {
00009  public:
00010   EcalBarrelNavigator(const EBDetId& home,const CaloSubdetectorTopology* ebTopology) :
00011     CaloNavigator<EBDetId>(home,ebTopology)
00012     {
00013     };
00014 };
00015 
00016 #endif