TotemT2Tile

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/****************************************************************************
*
* This is a part of TOTEM offline software.
* Author:
*   Laurent Forthomme
*
****************************************************************************/

#ifndef Geometry_ForwardGeometry_TotemT2Tile_h
#define Geometry_ForwardGeometry_TotemT2Tile_h

#include "DataFormats/GeometryVector/interface/GlobalPoint.h"
#include "Geometry/VeryForwardGeometryBuilder/interface/DetGeomDesc.h"

class TotemT2Tile {
public:
  TotemT2Tile();
  explicit TotemT2Tile(const DetGeomDesc*);
  ~TotemT2Tile();

  const GlobalPoint& centre() const { return centre_; }

private:
  GlobalPoint centre_;
};

#endif