//
//
// Logs:
//
//  $Log: LParticle.h,v $
//  Revision 1.2  2003/06/26 09:27:11  cvs
//  added log fields...
//

#ifndef _L_PARTICLE___
#define _L_PARTICLE___

#include "Config.h"

#include <Rtypes.h>

class LParticle {
 private:
  float fenergy; //energy of the particle

 public:
  int i,j,k; // lattice coordinates
  float time; //self-frame time
 public:
  LParticle();
  virtual ~LParticle();

  void SetEnergy(const float energy){fenergy=energy;};
  float GetEnergy() const {return fenergy;};

  ClassDef(LParticle,0)  //Simple particle
};

#endif //_L_PARTICLE___









