source: JEM-EUSO/esaf_cc_at_lal/packages/common/base/src/EVector.cc @ 114

Last change on this file since 114 was 114, checked in by moretto, 11 years ago

actual version of ESAF at CCin2p3

File size: 465 bytes
Line 
1// ESAF : Euso Simulation and Analysis Framework
2// $Id: EVector.cc 733 2004-06-14 09:16:25Z thea $
3// Daniel De Marco created Apr,  2 2002
4
5#include "EVector.hh"
6#include "EarthVector.hh"
7#include <math.h>
8
9ostream& operator<<(ostream &os, const EVector &v) {
10    os<<"("<<v.x()<<", "<<v.y()<<", "<<v.z()<<")";
11    return os;
12}
13
14// Convert EarthVector into EVector
15EVector::EVector(const EarthVector& v) {
16    this->SetXYZ(v.X(),v.Y(),v.Z());
17}
18
19ClassImp(EVector)
Note: See TracBrowser for help on using the repository browser.