NAMD
Measure.h
Go to the documentation of this file.
1 
7 /*
8  Measurements on coordinates of entire system during run.
9 */
10 
11 #ifndef MEASURE_H
12 #define MEASURE_H
13 
14 #ifdef NAMD_TCL
15 #include <tcl.h>
16 
17 class Measure {
18 public:
19  static void createCommands(Tcl_Interp *);
20  static void deleteCommands(Tcl_Interp *);
21 private:
22  static int wrapCommand(ClientData, Tcl_Interp*, int, const char**);
23 };
24 
25 #endif
26 
27 #endif
28 
static void createCommands(Tcl_Interp *)
Definition: Measure.C:169
static void deleteCommands(Tcl_Interp *)
Definition: Measure.C:180