ATLAS Offline Software
PhysicsAnalysis
PyAnalysis
PyAnalysisUtils
python
normphi.py
Go to the documentation of this file.
1
# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
2
3
#
4
# File: normphi.py
5
# Created: sss, 2004.
6
# Purpose: Normalize an angle to within the range -pi...pi.
7
#
8
# This is intended for use only when the initial angle is already
9
# close to being within the range.
10
#
11
12
13
from
math
import
pi
14
15
def
normphi
(phi):
16
"""Normalize an angle to within the range -pi...pi.
17
18
This is intended for use only when the initial angle is already
19
close to being within the range.
20
"""
21
22
while
phi < -pi:
23
phi += 2*pi
24
while
phi > pi:
25
phi -= 2*pi
26
return
phi
27
28
python.normphi.normphi
def normphi(phi)
Definition:
normphi.py:15
Generated on Sun Dec 22 2024 21:15:44 for ATLAS Offline Software by
1.8.18