Fork me on GitHub

source: svn/trunk/Utilities/FROG/Includes/FROG/FROG_Coord.h@ 95

Last change on this file since 95 was 95, checked in by severine ovyn, 16 years ago

first commit frog

File size: 482 bytes
Line 
1// FROG_Coord.h: interface for the FROG_Coord functions.
2//////////////////////////////////////////////////////////////////////
3
4#ifndef _FROG_COORD_H__
5#define _FROG_COORD_H__
6
7#include <math.h>
8
9namespace FROG_COORD{
10
11 float EtaToTheta(float Eta);
12 void PhysicalToCartesian(float P, float Eta, float Phi, float& X, float& Y , float& Z);
13 void CartesianToPhysical(float X, float Y , float Z , float& P, float& Eta, float& Phi);
14
15 float GetPt(float P, float Eta);
16
17}
18
19#endif
20
21
Note: See TracBrowser for help on using the repository browser.