Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:20:01

0001 #ifndef L1Trigger_GlobalTriggerAnalyzer_L1PhiConversion_h
0002 #define L1Trigger_GlobalTriggerAnalyzer_L1PhiConversion_h
0003 
0004 /**
0005  *
0006  * Description: math utilities.
0007  *
0008  * Implementation:
0009  *    <TODO: enter implementation details>
0010  *
0011  * \author: Vasile Mihai Ghete   - HEPHY Vienna
0012  *
0013  *
0014  */
0015 
0016 // system include files
0017 #include <cmath>
0018 
0019 static const double PiConversion = 180. / acos(-1.);
0020 
0021 ///  convert phi from rad (-pi, pi] to deg (0, 360)
0022 const double rad2deg(const double&);
0023 
0024 #endif