--- trunk/SHAPES/SphereHarm.cpp 2004/06/23 23:19:43 1292 +++ trunk/SHAPES/SphereHarm.cpp 2004/06/24 15:47:52 1298 @@ -112,8 +112,11 @@ void SphereHarm::printShapesFileStart(char name[200], void SphereHarm::printShapesFileStart(char name[200], char particle[80], double mass, double momInert[3][3]){ ofstream shapes(name); + shapes << "begin ShapeInfo\n"; + shapes << "#name\t\tmass\tI_xx\tI_yy\tI_zz\n"; shapes << particle << "\t" << mass << "\t" << momInert[0][0] << "\t" << momInert[1][1] << "\t" << momInert[2][2] << "\n"; + shapes << "end ShapeInfo\n"; } void SphereHarm::printToShapesFile(char name[200], int index){