Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102780078
particle.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Feb 24, 03:00
Size
1 KB
Mime Type
text/x-c++
Expires
Wed, Feb 26, 03:00 (1 d, 17 h)
Engine
blob
Format
Raw Data
Handle
24416764
Attached To
R7571 SP4E-TB-TL-FR
particle.hh
View Options
#ifndef __PARTICLE__HH__
#define __PARTICLE__HH__
/* -------------------------------------------------------------------------- */
#include "vector.hh"
/* -------------------------------------------------------------------------- */
//! Particle base class
class Particle {
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
public:
//! Default destructor (virtual because of virtual functions in this class)
virtual ~Particle() = default;
// Accessors
public:
//! Get mass
Real& getMass() { return mass; }
//! Get position
Vector& getPosition() { return position; }
//! Get force
Vector& getForce() { return force; }
//! Get velocity
Vector& getVelocity() { return velocity; }
// I/O functions
public:
/// function to print the content of the class
virtual void printself(std::ostream& stream) const;
/// function to initilize values from input files
virtual void initself(std::istream& sstr);
// Members
protected:
Real mass;
Vector position, force, velocity;
};
/* -------------------------------------------------------------------------- */
#endif //__PARTICLE__HH__
Event Timeline
Log In to Comment