Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:14:38

0001 /****************************************************************************
0002 *
0003 * This is a part of TOTEM offline software.
0004 * Author:
0005 *   Laurent Forthomme
0006 *
0007 ****************************************************************************/
0008 
0009 #ifndef Geometry_ForwardGeometry_TotemT2Tile_h
0010 #define Geometry_ForwardGeometry_TotemT2Tile_h
0011 
0012 #include "DataFormats/GeometryVector/interface/GlobalPoint.h"
0013 #include "Geometry/VeryForwardGeometryBuilder/interface/DetGeomDesc.h"
0014 
0015 class TotemT2Tile {
0016 public:
0017   TotemT2Tile();
0018   explicit TotemT2Tile(const DetGeomDesc*);
0019   ~TotemT2Tile();
0020 
0021   const GlobalPoint& centre() const { return centre_; }
0022 
0023 private:
0024   GlobalPoint centre_;
0025 };
0026 
0027 #endif