00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef _EOREALPARTICLE_H
00012 #define _EOREALPARTICLE_H
00013
00014
00015 #include <eoVectorParticle.h>
00016
00017
00020 template < class FitT> class eoRealParticle: public eoVectorParticle<FitT,double,double>
00021
00022 {
00023 public:
00024
00025 eoRealParticle(unsigned size = 0, double positions = 0.0,double velocities = 0.0,double bestPositions = 0.0): eoVectorParticle<FitT, double,double> (size, positions,velocities,bestPositions) {}
00026
00027 virtual std::string className() const
00028 {
00029 return "eoRealParticle";
00030 }
00031 };
00032
00033 #endif