1 |
/* |
2 |
* GeometryBuilder.hpp |
3 |
* nanorodBuilder |
4 |
* |
5 |
* Created by Charles Vardeman II on 4/4/05. |
6 |
* Copyright 2005 University of Notre Dame. All rights reserved. |
7 |
* |
8 |
*/ |
9 |
/* |
10 |
* Copyright (c) 2005 The University of Notre Dame. All Rights Reserved. |
11 |
* |
12 |
* The University of Notre Dame grants you ("Licensee") a |
13 |
* non-exclusive, royalty free, license to use, modify and |
14 |
* redistribute this software in source and binary code form, provided |
15 |
* that the following conditions are met: |
16 |
* |
17 |
* 1. Acknowledgement of the program authors must be made in any |
18 |
* publication of scientific results based in part on use of the |
19 |
* program. An acceptable form of acknowledgement is citation of |
20 |
* the article in which the program was described (Matthew |
21 |
* A. Meineke, Charles F. Vardeman II, Teng Lin, Christopher |
22 |
* J. Fennell and J. Daniel Gezelter, "OOPSE: An Object-Oriented |
23 |
* Parallel Simulation Engine for Molecular Dynamics," |
24 |
* J. Comput. Chem. 26, pp. 252-271 (2005)) |
25 |
* |
26 |
* 2. Redistributions of source code must retain the above copyright |
27 |
* notice, this list of conditions and the following disclaimer. |
28 |
* |
29 |
* 3. Redistributions in binary form must reproduce the above copyright |
30 |
* notice, this list of conditions and the following disclaimer in the |
31 |
* documentation and/or other materials provided with the |
32 |
* distribution. |
33 |
* |
34 |
* This software is provided "AS IS," without a warranty of any |
35 |
* kind. All express or implied conditions, representations and |
36 |
* warranties, including any implied warranty of merchantability, |
37 |
* fitness for a particular purpose or non-infringement, are hereby |
38 |
* excluded. The University of Notre Dame and its licensors shall not |
39 |
* be liable for any damages suffered by licensee as a result of |
40 |
* using, modifying or distributing the software or its |
41 |
* derivatives. In no event will the University of Notre Dame or its |
42 |
* licensors be liable for any lost revenue, profit or data, or for |
43 |
* direct, indirect, special, consequential, incidental or punitive |
44 |
* damages, however caused and regardless of the theory of liability, |
45 |
* arising out of the use of or inability to use software, even if the |
46 |
* University of Notre Dame has been advised of the possibility of |
47 |
* such damages. |
48 |
*/ |
49 |
|
50 |
|
51 |
#ifndef APPLICATIONS_NANORODBUILDER_GEOMETRYBUILDER_HPP |
52 |
#define APPLICATIONS_NANORODBUILDER_GEOMETRYBUILDER_HPP |
53 |
|
54 |
#include <string> |
55 |
#include "config.h" |
56 |
|
57 |
namespace oopse { |
58 |
|
59 |
class GeometryBuilder{ |
60 |
|
61 |
|
62 |
public: |
63 |
|
64 |
GeometryBuilder(RealType length,RealType width); |
65 |
GeometryBuilder(RealType length,RealType width, bool twinned); |
66 |
~GeometryBuilder(){}; |
67 |
|
68 |
bool isInsidePolyhedron(RealType x, RealType y, RealType z); |
69 |
void dumpGeometry(const std::string& geomFileName); |
70 |
private: |
71 |
}; |
72 |
} |
73 |
#endif //APPLICATIONS_NANORODBUILDER_GEOMETRYBUILDER_HPP |