File: cp4vasp_noODP.i

package info (click to toggle)
p4vasp 0.3.30%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 6,504 kB
  • sloc: python: 37,179; cpp: 13,894; ansic: 2,076; makefile: 377; sql: 207; xml: 102; sh: 13
file content (101 lines) | stat: -rw-r--r-- 2,881 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
 *  p4vasp is a GUI-program and library for processing outputs of the
 *  Vienna Ab-inition Simulation Package (VASP)
 *  (see http://cms.mpi.univie.ac.at/vasp/Welcome.html)
 *  
 *  Copyright (C) 2003  Orest Dubay <odubay@users.sourceforge.net>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

%module cp4vasp
%{
#include <exception>
//#include <new>
//#include <stdexcept>
#include <p4vasp/Exceptions.h>
#include <p4vasp/ClassInterface.h>
#include <p4vasp/AtomtypesRecord.h>
#include <p4vasp/AtomInfo.h>
#include <p4vasp/vecutils3d.h>
#include <p4vasp/Structure.h>
#include <p4vasp/Chgcar.h>
#include <p4vasp/VisMain.h>
#include <p4vasp/VisWindow.h>
#include <p4vasp/VisDrawer.h>
#include <p4vasp/VisNavDrawer.h>
#include <p4vasp/VisPrimitiveDrawer.h>
#include <p4vasp/VisStructureDrawer.h>
#include <p4vasp/VisStructureArrowsDrawer.h>
#include <p4vasp/VisIsosurfaceDrawer.h>
%}



//%include "include/p4vasp/Exceptions.h"

#ifndef NO_THROW
#  ifdef SIMPLE_EXCEPTIONS
%except(python) {
  try{
    $function
  }
  catch(exception &e){
    PyErr_SetString(PyExc_Exception,e.what());
    return NULL;
  }
}
#else
%exception {
  try{
    $function
  }
  catch(RangeException e){
    PyErr_SetString(PyExc_IndexError,e.what());
    return NULL;
  }
  catch(MemoryAllocationException e){
    PyErr_SetString(PyExc_MemoryError,e.what());
    return NULL;
  }
  catch(NullPointerException e){
    PyErr_SetString(PyExc_RuntimeError,e.what());
    return NULL;
  }
  catch(Exception e){
    PyErr_SetString(PyExc_Exception,e.what());
    return NULL;
  }
  catch(exception &e){
    PyErr_SetString(PyExc_Exception,e.what());
    return NULL;
  }
}
#  endif
#endif

%include "include/p4vasp/ClassInterface.h"
%include "include/p4vasp/AtomtypesRecord.h"
%include "include/p4vasp/AtomInfo.h"
%include "include/p4vasp/vecutils3d.h"
%include "include/p4vasp/Structure.h"
%include "include/p4vasp/Chgcar.h"
%include "include/p4vasp/VisMain.h"
%include "include/p4vasp/VisWindow.h"
%include "include/p4vasp/VisDrawer.h"
%include "include/p4vasp/VisNavDrawer.h"
%include "include/p4vasp/VisPrimitiveDrawer.h"
%include "include/p4vasp/VisStructureDrawer.h"
%include "include/p4vasp/VisStructureArrowsDrawer.h"