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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck
  • Date: 2006-09-10 14:01:33 UTC
  • Revision ID: james.westby@ubuntu.com-20060910140133-ib2j86trekykfsfv
Tags: upstream-3.2.3
ImportĀ upstreamĀ versionĀ 3.2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Input parameters for cclambda */
 
2
struct Params {
 
3
  int maxiter;
 
4
  double convergence;
 
5
  int restart;
 
6
  long int memory;
 
7
  int cachelev;
 
8
  int aobasis;
 
9
  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
  int local;  /* boolean for using simulated local-CC framework */
 
17
};
 
18