Changeset 53d153 for molecuilder/src/builder.cpp
- Timestamp:
- Jul 27, 2009, 8:16:03 AM (16 years ago)
- Children:
- 0ac84df
- Parents:
- c3a303
- File:
-
- 1 edited
-
molecuilder/src/builder.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/builder.cpp
rc3a303 r53d153 581 581 break; 582 582 case 'e': 583 cout << Verbose(0) << "Evaluating volume of the convex envelope."; 584 VolumeOfConvexEnvelope((ofstream *)&cout, NULL, configuration, NULL, mol); 583 { 584 cout << Verbose(0) << "Evaluating volume of the convex envelope."; 585 LinkedCell LCList(mol, 10.); 586 class Tesselation *TesselStruct = NULL; 587 Find_convex_border((ofstream *)&cout, mol, TesselStruct, &LCList, NULL); 588 double clustervolume = VolumeOfConvexEnvelope((ofstream *)&cout, TesselStruct, configuration); 589 delete(TesselStruct); 590 } 585 591 break; 586 592 case 'f': … … 1807 1813 cout << Verbose(0) << "Evaluating volume of the convex envelope."; 1808 1814 cout << Verbose(1) << "Storing tecplot data in " << argv[argptr] << "." << endl; 1809 VolumeOfConvexEnvelope((ofstream *)&cout, argv[argptr], &configuration, NULL, mol); 1815 LinkedCell LCList(mol, 10.); 1816 class Tesselation *TesselStruct = NULL; 1817 Find_convex_border((ofstream *)&cout, mol, TesselStruct, &LCList, NULL); 1818 double clustervolume = VolumeOfConvexEnvelope((ofstream *)&cout, TesselStruct, &configuration); 1819 delete(TesselStruct); 1810 1820 argptr+=1; 1811 1821 }
Note:
See TracChangeset
for help on using the changeset viewer.
