whitespace cleanup: replace tabs and remove trailing whitespace

This commit is contained in:
Axel Kohlmeyer
2020-07-27 17:14:53 -04:00
parent 41535d8de3
commit 634f274a04
27 changed files with 1150 additions and 1150 deletions

View File

@ -3,7 +3,7 @@
* POEMS: PARALLELIZABLE OPEN SOURCE EFFICIENT MULTIBODY SOFTWARE *
* DESCRIPTION: SEE READ-ME *
* FILE NAME: system.h *
* AUTHORS: See Author List *
* AUTHORS: See Author List *
* GRANTS: See Grants List *
* COPYRIGHT: (C) 2005 by Authors as listed in Author's List *
* LICENSE: Please see License Agreement *
@ -11,7 +11,7 @@
* ADMINISTRATOR: Prof. Kurt Anderson *
* Computational Dynamics Lab *
* Rensselaer Polytechnic Institute *
* 110 8th St. Troy NY 12180 *
* 110 8th St. Troy NY 12180 *
* CONTACT: anderk5@rpi.edu *
*_________________________________________________________________________*/
@ -22,8 +22,8 @@
#include <iostream>
#include <fstream>
#include <string>
#include <cstdio>
#include <iomanip>
#include <cstdio>
#include <iomanip>
#include "poemslist.h"
#include "matrices.h"
@ -47,42 +47,42 @@
class Joint;
class System{
private:
int * mappings;
private:
int * mappings;
public:
double time;
List<Body> bodies;
List<Joint> joints;
System();
~System();
void Delete();
int GetNumBodies();
int * GetMappings();
int * GetMappings();
void AddBody(Body* body);
void AddJoint(Joint* joint);
void SetTime(double t);
double GetTime();
void ComputeForces();
bool ReadIn(std::istream& in);
void WriteOut(std::ostream& out);
void ClearBodyIDs();
void ClearJointIDs();
void ClearJointIDs();
void Create_System_LAMMPS(int numbodies, double *mass,double **inertia, double ** xcm, double ** xjoint,double **vh1,double **omega,double **ex_space, double **ey_space, double **ez_space, int b, int * mapping, int count);
void Create_DegenerateSystem(int& nfree, int*freelist, double *&masstotal, double **&inertia, double **&xcm, double **&vcm, double **&omega, double **&ex_space, double **&ey_space, double **&ez_space);
};