src_CSA_DiL removed from prerelease, current version in devel
[unres.git] / source / unres / src_CSA_DiL / pinorm.f
diff --git a/source/unres/src_CSA_DiL/pinorm.f b/source/unres/src_CSA_DiL/pinorm.f
deleted file mode 100644 (file)
index 91392bf..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-      double precision function pinorm(x)
-      implicit real*8 (a-h,o-z)
-c                                                                      
-c this function takes an angle (in radians) and puts it in the range of
-c -pi to +pi.                                                         
-c                                                                    
-      integer n                                                        
-      include 'COMMON.GEO'
-      n = x / dwapi
-      pinorm = x - n * dwapi
-      if ( pinorm .gt. pi ) then                                      
-         pinorm = pinorm - dwapi
-      else if ( pinorm .lt. - pi ) then                               
-         pinorm = pinorm + dwapi
-      end if                                                          
-      return                                                          
-      end