OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
DynamicFixedPoint.h
Go to the documentation of this file.
1 #ifndef MAD_DynamicFixedPoint_HH
2 #define MAD_DynamicFixedPoint_HH
3 
4 // ------------------------------------------------------------------------
5 // $RCSfile: DynamicFixedPoint.h,v $
6 // ------------------------------------------------------------------------
7 // $Revision: 1.1.1.1 $
8 // ------------------------------------------------------------------------
9 // Copyright: see Copyright.readme
10 // ------------------------------------------------------------------------
11 //
12 // Class: DynamicFixedPoint
13 //
14 // ------------------------------------------------------------------------
15 // Class category: Algebra
16 // ------------------------------------------------------------------------
17 //
18 // $Date: 2000/03/27 09:32:32 $
19 // $Author: fci $
20 //
21 // ------------------------------------------------------------------------
22 
23 #include "Algebra/VpsInvMap.h"
24 
25 template <class T> class Vector;
26 
27 
28 // Class DynamicFixedPoint
29 // ------------------------------------------------------------------------
31 // Class DynamicFixedPoint represents the dynamic fixed point of a
32 // truncated power series map.
33 
35 
36 public:
37 
39  // Find the fixed point of "map".
41 
45 
47  // Return the fixed point as a vector of phase space coordinates.
48  const Vector<double> &getFixedPoint() const;
49 
51  // Return the map around the computed fixed point.
52  const VpsInvMap<double> &getFixedPointMap() const;
53 
54 private:
55 
56  // Not implemented.
57  void operator=(const DynamicFixedPoint &);
58 
59  // Fixed point position.
61 
62  // Map around the fixed point.
64 };
65 
66 #endif // MAD_DynamicFixedPoint_HH
void operator=(const DynamicFixedPoint &)
VpsInvMap< double > fixedPointMap
Dynamic fix point of a map.
Vector< double > fixedPoint
const Vector< double > & getFixedPoint() const
Get fixed point transform.
Vector.
const VpsInvMap< double > & getFixedPointMap() const
Get map around fixed point.