]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PWG2/FEMTOSCOPY/AliFemto/AliFmPhysicalHelix.h
Migration of PWG2/FEMTOSCOPY to PWGCF/FEMTOSCOPY
[u/mrichter/AliRoot.git] / PWG2 / FEMTOSCOPY / AliFemto / AliFmPhysicalHelix.h
diff --git a/PWG2/FEMTOSCOPY/AliFemto/AliFmPhysicalHelix.h b/PWG2/FEMTOSCOPY/AliFemto/AliFmPhysicalHelix.h
deleted file mode 100644 (file)
index ae62518..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-///////////////////////////////////////////////////////////////////////////
-//                                                                       //
-// AliFmHelix: a helper helix class                                      //
-//                                                                       //
-///////////////////////////////////////////////////////////////////////////
-#ifndef ALIFMPHYSICALHELIX_H
-#define ALIFMPHYSICALHELIX_H
-
-#include "AliFmThreeVector.h"
-#include "AliFmHelix.h"
-
-class AliFmPhysicalHelix : public AliFmHelix {
- public:
-  // Requires: momentum, origin, signed Magnetic Field
-  //           and Charge of particle (+/- 1)
-  AliFmPhysicalHelix(const AliFmThreeVector<double>& v1,
-                    const AliFmThreeVector<double>& v2,
-                    double x, double y);
-    
-  // curvature, dip angle, phase, origin, h
-  AliFmPhysicalHelix(double curvature, double dipAngle, double phase,
-                    const AliFmThreeVector<double>& origin, int h=-1);
-  AliFmPhysicalHelix();
-  
-  ~AliFmPhysicalHelix();
-  
-  // Requires:  signed Magnetic Field
-  AliFmThreeVector<double> Momentum(double x) const;     // returns the momentum at origin
-  AliFmThreeVector<double> MomentumAt(double x, double y) const; // returns momemtum at S
-  int                   Charge(double x)   const;     // returns charge of particle
-  // 2d DCA to x,y point signed relative to curvature
-  double CurvatureSignedDistance(double x, double y) ;
-  // 2d DCA to x,y point signed relative to rotation 
-  double GeometricSignedDistance(double x, double y) ;
-  // 3d DCA to 3d point signed relative to curvature
-  double CurvatureSignedDistance(const AliFmThreeVector<double>& v) ;
-  // 3d DCA to 3d point signed relative to rotation
-  double GeometricSignedDistance(const AliFmThreeVector<double>& v) ;
-  
-#ifdef __ROOT__
-  ClassDef(AliFmPhysicalHelix,1)
-#endif
-};
-
-#endif