Pteros
2.0
Molecular modeling library for human beings!
pdb_file.h
1
/*
2
* This file is a part of
3
*
4
* ============================================
5
* ### Pteros molecular modeling library ###
6
* ============================================
7
*
8
* https://github.com/yesint/pteros
9
*
10
* (C) 2009-2021, Semen Yesylevskyy
11
*
12
* All works, which use Pteros, should cite the following papers:
13
*
14
* 1. Semen O. Yesylevskyy, "Pteros 2.0: Evolution of the fast parallel
15
* molecular analysis library for C++ and python",
16
* Journal of Computational Chemistry, 2015, 36(19), 1480–1488.
17
* doi: 10.1002/jcc.23943.
18
*
19
* 2. Semen O. Yesylevskyy, "Pteros: Fast and easy to use open-source C++
20
* library for molecular analysis",
21
* Journal of Computational Chemistry, 2012, 33(19), 1632–1636.
22
* doi: 10.1002/jcc.22989.
23
*
24
* This is free software distributed under Artistic License:
25
* http://www.opensource.org/licenses/artistic-license-2.0.php
26
*
27
*/
28
29
#pragma once
30
31
#include "vmd_molfile_plugin_wrapper.h"
32
33
namespace
pteros {
34
36
class
PdbFile
:
public
VmdMolfilePluginWrapper
{
37
public
:
38
39
PdbFile
(std::string& fname);
40
41
virtual
FileContent
get_content_type
()
const
{
42
return
FileContent()
43
.atoms(
true
)
44
.coord(
true
)
45
.traj(
true
);
46
}
47
};
48
49
}
50
51
52
53
54
pteros::PdbFile::get_content_type
virtual FileContent get_content_type() const
Reports content of this file type.
Definition:
pdb_file.h:41
pteros::PdbFile
Use VMD plugin for PDB.
Definition:
pdb_file.h:36
pteros::VmdMolfilePluginWrapper
Generic API for reading and writing any molecule file formats.
Definition:
vmd_molfile_plugin_wrapper.h:40
src
core
io
pdb_file.h
Generated on Sat Jul 9 2022 15:59:59 for Pteros by
1.8.17