// Author: Egon Pavlica <http://www.ses-ng.si/~pavlica/>
#include "LParticle.h"
#include <iostream>
//________________________________________
// This class is for use in
// simulation of charge particle in a
// disordered molecular crystal lattice
// Currentlly it is very unfinished!
//
//
// Logs:
//
// $Log: LParticle.cc,v $
// Revision 1.2 2003/06/26 09:27:11 cvs
// added log fields...
//
ClassImp(LParticle)
LParticle::LParticle() {
//default constructor
time=0.0;
fenergy=0.;
if (fverbose) std::cout<<"New particle created.n";
};
LParticle::~LParticle() {
//default destructor
if (fverbose) std::cout<<"Particle destroyed.n";
};
ROOT page - Class index - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.