~ubuntu-branches/ubuntu/vivid/psicode/vivid

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck
  • Date: 2008-06-07 16:49:57 UTC
  • mfrom: (2.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080607164957-8pifvb133yjlkagn
Tags: 3.3.0-3
* debian/rules (DEB_MAKE_CHECK_TARGET): Do not abort test suite on
  failures.
* debian/rules (DEB_CONFIGURE_EXTRA_FLAGS): Set ${bindir} to /usr/lib/psi.
* debian/rules (install/psi3): Move psi3 file to /usr/bin.
* debian/patches/07_464867_move_executables.dpatch: New patch, add
  /usr/lib/psi to the $PATH, so that the moved executables are found.
  (closes: #464867)
* debian/patches/00list: Adjusted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
  long int memory;
7
7
  int cachelev;
8
8
  int aobasis;
 
9
  char *wfn;
9
10
  int ref;
10
 
  int ground; /* boolean, =1 implies only ground state calculation */
11
 
  double L0; /* 1 for ground states, 0 for excited states */
12
 
  double **R0; /* read from CC_INFO if necessary */
13
 
  double **cceom_energy; /* read from CC_INFO if necessary */
14
 
  int *states_per_irrep; /* determined from input file */
15
 
  int *Ls_per_irrep;
16
11
  int local;  /* boolean for using simulated local-CC framework */
 
12
  int nstates; /* total number of L vectors to compute */
 
13
  int zeta; /* boolean for solving zeta equations - implies excited state*/
 
14
  int print;
 
15
  int dertype;
 
16
  int diis;
 
17
  char *abcd;
 
18
  int sekino;  /* Sekino-Bartlett size-extensive models */
 
19
        /* the following should be obseleted now or soon */
 
20
  int all; /* find Ls for all excited states plus ground state */
 
21
  int ground; /* find L for only ground state */
 
22
  int num_amps;
 
23
};
 
24
 
 
25
struct L_Params {
 
26
  int irrep; /* same as corresponding R */
 
27
  double R0;    /* same as corresponding R */
 
28
  double cceom_energy; /* same as corresponding R */
 
29
  int root; /* index of root within irrep */
 
30
  int ground; /* boolean, is this a ground state L ? */
 
31
  char L1A_lbl[32];
 
32
  char L1B_lbl[32];
 
33
  char L2AA_lbl[32];
 
34
  char L2BB_lbl[32];
 
35
  char L2AB_lbl[32];
 
36
  char L2RHF_lbl[32];
17
37
};
18
38