File: TestBiotypeSelfCode.cpp

package info (click to toggle)
molmodel 3.0~svn842-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 24,616 kB
  • sloc: cpp: 40,500; perl: 526; ansic: 317; makefile: 50
file content (19 lines) | stat: -rw-r--r-- 444 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "SimTKmolmodel.h"
#include <iostream>
#include <fstream>

using namespace SimTK;
using namespace std;

int main() 
{
    Biotype argonBiotype = Biotype::Argon();

    DuMMForceFieldSubsystem dumm;
    ifstream tinkerStream("../../resources/tinker_amber99_clean.prm");
    dumm.populateFromTinkerParameterFile(tinkerStream);

    // ofstream codeOut("biotype_test.cpp");

    Biotype::generateAllBiotypeCode(cout);
}