~ubuntu-branches/ubuntu/quantal/psicode/quantal

« back to all changes in this revision

Viewing changes to src/bin/transqt/Params.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck, Michael Banck, Daniel Leidert
  • Date: 2009-02-23 00:12:02 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090223001202-rutldoy3dimfpesc
Tags: 3.4.0-1
* New upstream release.

[ Michael Banck ]
* debian/patches/01_DESTDIR.dpatch: Refreshed.
* debian/patches/02_FHS.dpatch: Removed, applied upstream.
* debian/patches/03_debian_docdir: Likewise.
* debian/patches/04_man.dpatch: Likewise.
* debian/patches/06_466828_fix_gcc_43_ftbfs.dpatch: Likewise.
* debian/patches/07_464867_move_executables: Fixed and refreshed.
* debian/patches/00list: Adjusted.
* debian/control: Improved description.
* debian/patches-held: Removed.
* debian/rules (install/psi3): Do not ship the ruby bindings for now.

[ Daniel Leidert ]
* debian/rules: Fix txtdir via DEB_MAKE_INSTALL_TARGET.
* debian/patches/01_DESTDIR.dpatch: Refreshed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*! \file
 
2
    \ingroup TRANSQT
 
3
    \brief Enter brief description of file here 
 
4
*/
1
5
/* Struct for input parameters */
2
6
 
 
7
#ifndef _psi3_bin_transqt_Params_h_
 
8
#define _psi3_bin_transqt_Params_h_
 
9
 
 
10
namespace psi { namespace transqt {
 
11
 
3
12
struct Params {
4
13
  int runmode;                  /* which mode we are running in, defined
5
14
                                   in globals.h                           */
65
74
  int qrhf;                     /* boolean for QRHF reference             */
66
75
  int ivo;                      /* boolean for test IVO's                 */
67
76
  int semicanonical;            /* boolean for Semicanonical orbitals     */
 
77
                                /* now semicanonical is used as an integer:
 
78
                                  ==1 for semicanonical, 2 for z-averaged */
68
79
 
69
 
  char *aobasis;                /* string for AO-Basis CC algorithms     */
 
80
  char *aobasis;                /* string for AO-Basis CC algorithms      */
70
81
 
71
82
  int pitzer;                   /* boolean to override all MO reordering  */
 
83
  int psimrcc;                  /* boolean for psimrcc settings           */
72
84
};
73
85
 
74
86
/* Note that the current version does a reordering of orbital indices.
77
89
 * currently output only to 'mfile' after reordering, and not to 
78
90
 * 'sorted_tei_file'
79
91
 */
 
92
 
 
93
}} // end namespace psi::transqt
 
94
#endif // header guard