]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Separated declaration and implementation needed on HP with aCC
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 9 Jul 2002 16:59:01 +0000 (16:59 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 9 Jul 2002 16:59:01 +0000 (16:59 +0000)
PHOS/AliPHOSGeometry.h

index 71212f794a38a8effe4273489c12a5e2e8bbfb41..d8bbbf79749e806b9d5edaae8cb19c9545bf9038 100644 (file)
@@ -69,9 +69,9 @@ public:
  
   // General
 
-  static TString Degre(void) { return TString("deg") ; }  // a global for degree (deg)
+  inline static TString Degre(void);  // a global for degree (deg)
 
-  static TString Radian(void){ return TString("rad") ; }  // a global for radian (rad)
+  inline static TString Radian(void);  // a global for radian (rad)
 
   Bool_t AbsToRelNumbering(const Int_t AbsId, Int_t * RelId) const ; 
                                           // converts the absolute PHOS numbering to a relative 
@@ -177,4 +177,8 @@ private:
 
 } ;
 
+  inline static TString Degre(void) { return TString("deg") ; }  // a global for degree (deg)
+
+  inline static TString Radian(void){ return TString("rad") ; }  // a global for radian (rad)
+
 #endif // AliPHOSGEOMETRY_H