]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/MUON/src/AliRoot/Point.cxx
This commit was generated by cvs2svn to compensate for changes in r11742,
[u/mrichter/AliRoot.git] / HLT / MUON / src / AliRoot / Point.cxx
1 ////////////////////////////////////////////////////////////////////////////////
2 //
3 // Author: Artur Szostak
4 // Email:  artur@alice.phy.uct.ac.za | artursz@iafrica.com
5 //
6 ////////////////////////////////////////////////////////////////////////////////
7
8 #include "AliRoot/Point.hpp"
9 #include "TMath.h"
10
11 ClassImp(AliMUONHLT::Point);
12
13 namespace AliMUONHLT
14 {
15
16 Point::Point() : TObject()
17 {
18         fX = fY = 0.0;
19 };
20
21 Point::Point(const Float_t x, const Float_t y) : TObject()
22 {
23         fX = x;
24         fY = y;
25 };
26
27 std::ostream& operator << (std::ostream& os, const Point& p)
28 {
29         os << "[" << p.fX << ", " << p.fY << "]";
30         return os;
31 };
32
33 }; // AliMUONHLT
34