Ignore:
Timestamp:
Apr 28, 2010, 2:52:56 PM (16 years ago)
Author:
Tillmann Crueger <crueger@…>
Children:
0d111b
Parents:
e7ea64
Message:

Removed Algebraic Hierachy from vector.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/vector.hpp

    re7ea64 r32842d8  
    3737  // Method implemented by forwarding to the Representation
    3838
    39   virtual double DistanceSquared(const Vector &y) const;
    40   virtual double DistanceToPlane(const Vector &PlaneNormal, const Vector &PlaneOffset) const;
    41   virtual double PeriodicDistance(const Vector &y, const double * const cell_size) const;
    42   virtual double PeriodicDistanceSquared(const Vector &y, const double * const cell_size) const;
    43   virtual double ScalarProduct(const Vector &y) const;
    44   virtual double Angle(const Vector &y) const;
    45   virtual bool IsZero() const;
    46   virtual bool IsOne() const;
    47   virtual bool IsNormalTo(const Vector &normal) const;
    48   virtual bool IsEqualTo(const Vector &a) const;
     39  double DistanceSquared(const Vector &y) const;
     40  double DistanceToPlane(const Vector &PlaneNormal, const Vector &PlaneOffset) const;
     41  double PeriodicDistance(const Vector &y, const double * const cell_size) const;
     42  double PeriodicDistanceSquared(const Vector &y, const double * const cell_size) const;
     43  double ScalarProduct(const Vector &y) const;
     44  double Angle(const Vector &y) const;
     45  bool IsZero() const;
     46  bool IsOne() const;
     47  bool IsNormalTo(const Vector &normal) const;
     48  bool IsEqualTo(const Vector &a) const;
    4949
    50   virtual void AddVector(const Vector &y);
    51   virtual void SubtractVector(const Vector &y);
    52   virtual void VectorProduct(const Vector &y);
    53   virtual void ProjectOntoPlane(const Vector &y);
    54   virtual void ProjectIt(const Vector &y);
    55   virtual Vector Projection(const Vector &y) const;
    56   virtual void Mirror(const Vector &x);
    57   virtual void ScaleAll(const double *factor);
    58   virtual void Scale(const double factor);
    59   virtual void MatrixMultiplication(const double * const M);
    60   virtual bool InverseMatrixMultiplication(const double * const M);
    61   virtual void KeepPeriodic(const double * const matrix);
    62   virtual bool GetOneNormalVector(const Vector &x1);
    63   virtual bool MakeNormalTo(const Vector &y1);
    64   virtual bool IsInParallelepiped(const Vector &offset, const double * const parallelepiped) const;
    65   virtual void WrapPeriodically(const double * const M, const double * const Minv);
     50  void AddVector(const Vector &y);
     51  void SubtractVector(const Vector &y);
     52  void VectorProduct(const Vector &y);
     53  void ProjectOntoPlane(const Vector &y);
     54  void ProjectIt(const Vector &y);
     55  Vector Projection(const Vector &y) const;
     56  void Mirror(const Vector &x);
     57  void ScaleAll(const double *factor);
     58  void Scale(const double factor);
     59  void MatrixMultiplication(const double * const M);
     60  bool InverseMatrixMultiplication(const double * const M);
     61  void KeepPeriodic(const double * const matrix);
     62  bool GetOneNormalVector(const Vector &x1);
     63  bool MakeNormalTo(const Vector &y1);
     64  bool IsInParallelepiped(const Vector &offset, const double * const parallelepiped) const;
     65  void WrapPeriodically(const double * const M, const double * const Minv);
    6666
    6767  // Accessors ussually come in pairs... and sometimes even more than that
    68   virtual double& operator[](size_t i);
    69   virtual const double& operator[](size_t i) const;
     68  double& operator[](size_t i);
     69  const double& operator[](size_t i) const;
    7070  double& at(size_t i);
    7171  const double& at(size_t i) const;
    7272
    7373  // Assignment operator
    74   virtual Vector &operator=(const Vector& src);
     74  Vector &operator=(const Vector& src);
    7575
    7676  // Access to internal structure
    77   virtual double* get();
     77  double* get();
    7878
    7979  // Methods that are derived directly from other methods
     
    9494
    9595protected:
    96   typedef std::auto_ptr<Vector> rep_ptr;
    97   Vector(Baseconstructor);
    98   Vector(Baseconstructor,const Vector*);
    99   static Vector VecFromRep(const Vector*);
    10096
    10197private:
    102   // method used for protection, i.e. to avoid infinite recursion
    103   // when our internal rep becomes messed up
    104   virtual bool isBaseClass() const;
    105   virtual Vector* clone() const;
    106   // this is used to represent the vector internally
    107   rep_ptr rep;
     98  double x[NDIM];
    10899
    109100};
Note: See TracChangeset for help on using the changeset viewer.