ATLAS Offline Software
Loading...
Searching...
No Matches
QuadFocuserHorizontal.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef FPTRACKER_QUADFOCUSERHORIZONTAL_H
6#define FPTRACKER_QUADFOCUSERHORIZONTAL_H
7#include "IQuadFocuser.h"
8namespace FPTracker{
9 class Point;
10 class TransversePoint;
12 public:
13 void focus(double, double, double, const TransversePoint& displacement, const Point& direction) ;
14 double xe() const;
15 double xae() const;
16 double ye() const;
17 double yae() const;
18 std::string label() const;
19 private:
20
21 static const std::string s_label;
22
23 double m_xe;
24 double m_xae;
25 double m_ye;
26 double m_yae;
27 };
28}
29#endif
void focus(double, double, double, const TransversePoint &displacement, const Point &direction)